使用Log4Cocoa进行多线程应用

时间:2013-05-30 08:34:17

标签: ios objective-c cocoa logging log4j

我开始在我的应用程序中使用Log4Cocoa库,但我搜索其他方式来配置记录器。

+ (void) configureWithFile:(NSString*)pathLogFile
{
    L4PropertyConfigurator* configurator = [[L4PropertyConfigurator alloc] pathLogFile];
    [configurator configure];
    [configurator release];
}

此功能将在主应用程序中仅为所有记录器调用一次,但我想更改此解决方案,以便在记录器的init中调用此函数,而不是在main中调用它。 感谢

0 个答案:

没有答案