]> err.no Git - sope/blob - sope-core/NGExtensions/NGLogging.subproj/NGLogAppender.m
overhauled logging for NGExtensions which NGObjWeb uses
[sope] / sope-core / NGExtensions / NGLogging.subproj / NGLogAppender.m
1 /*
2   Copyright (C) 2004 SKYRIX Software AG
3   
4   This file is part of OpenGroupware.org.
5   
6   OGo is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10   
11   OGo is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15   
16   You should have received a copy of the GNU Lesser General Public
17   License along with OGo; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #include "NGLogAppender.h"
23 #include "NGLogLevel.h"
24 #include "NGLogEvent.h"
25 #include "common.h"
26
27 @implementation NGLogAppender
28
29 - (void)appendLogEvent:(NGLogEvent *)_event {
30 #if LIB_FOUNDATION_LIBRARY
31   [self subclassResponsibility:_cmd];
32 #else
33   NSLog(@"ERROR(%s): method should be implemented by subclass!",
34           __PRETTY_FUNCTION__);
35 #endif
36 }
37
38 - (NSString *)formattedEvent:(NGLogEvent *)_event {
39   NSMutableString *fe;
40   NSString        *lvl;
41
42   lvl = [self localizedNameOfLogLevel:[_event level]];
43   fe = [NSMutableString stringWithCapacity:128];
44   if(lvl) {
45     [fe appendString:@"["];
46     [fe appendString:lvl];
47     [fe appendString:@"] "];
48   }
49   [fe appendString:[_event message]];
50   return fe;
51 }
52
53 - (NSString *)localizedNameOfLogLevel:(NGLogLevel)_level {
54   NSString *name;
55   
56   switch (_level) {
57     case NGLogLevelWarn:
58       name = @"WARN";
59       break;
60     case NGLogLevelError:
61       name = @"ERROR";
62       break;
63     case NGLogLevelFatal:
64       name = @"FATAL";
65       break;
66     default:
67       name = nil;
68       break;
69   }
70   return name;
71 }
72
73 @end /* NGLogAppender */