我开始在我的应用程序中使用Log4Cocoa库,但我搜索其他方式来配置记录器。
+ (void) configureWithFile:(NSString*)pathLogFile
{
L4PropertyConfigurator* configurator = [[L4PropertyConfigurator alloc] pathLogFile];
[configurator configure];
[configurator release];
}
此功能将在主应用程序中仅为所有记录器调用一次,但我想更改此解决方案,以便在记录器的init中调用此函数,而不是在main中调用它。 感谢