Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Log4Cocoa/L4RootLogger.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@

@implementation L4RootLogger

// +initialize fixed for a leak problem when the superclass L4Logger calls L4RootLogger within its own +initialize
// by defining the subclass +initialize, the superclass +initialize would not be called twice (its incorrect too since L4Logger is designed to be a singleton as well)
+ (void)initialize
{

}

- (id) initWithLevel:(L4Level *)aLevel
{
self = [super initWithName: @"root"];
Expand Down