org.apache.commons.logging.impl.LogFactoryImpl Java Examples

The following examples show how to use org.apache.commons.logging.impl.LogFactoryImpl. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractTestPage.java    From qaf with MIT License 5 votes vote down vote up
public AbstractTestPage(UiTestBase<D> testBase) {
	this.testbase = testBase;

	logger = LogFactoryImpl.getLog(this.getClass());
	driver = testbase.getDriver();

	this.pageProps = ConfigurationManager.getBundle();
	initWebElements();
}
 
Example #2
Source File: LogFactorySubstituted.java    From jlineup with Apache License 2.0 4 votes vote down vote up
@Substitute
protected static LogFactory newFactory(final String factoryClass,
                                       final ClassLoader classLoader,
                                       final ClassLoader contextClassLoader) {
    return new LogFactoryImpl();
}
 
Example #3
Source File: TestNGTestCase.java    From qaf with MIT License 4 votes vote down vote up
public TestNGTestCase() {
	logger = LogFactoryImpl.getLog(this.getClass());
}
 
Example #4
Source File: AbstractScenarioFileParser.java    From qaf with MIT License 4 votes vote down vote up
public AbstractScenarioFileParser() {
	logger = LogFactoryImpl.getLog(getClass());
	gson = new GsonBuilder().registerTypeAdapter(Map.class, new GsonObjectDeserializer()).create();
	this.includeGroups = new ArrayList<String>();
	this.excludeGroups = new ArrayList<String>();
}
 
Example #5
Source File: ChromeDriverHelper.java    From qaf with MIT License 4 votes vote down vote up
private ChromeDriverHelper() {
	logger = LogFactoryImpl.getLog(getClass());
}
 
Example #6
Source File: AssertionService.java    From qaf with MIT License 4 votes vote down vote up
public AssertionService() {
	logger = LogFactoryImpl.getLog(this.getClass());
	checkPointResults = new ArrayList<CheckpointResultBean>();
}