blob: 24043f06775582c7635b93d1b4760905afbe5023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// LiLog.h
// Liaison
//
// Created by Brian Cully on Tue May 20 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
@interface LiLog : NSObject
+ (void)alertWithHeader: (NSString *)aHeader
contents: (NSString *)someContents;
+ (void)logAsDebug: (NSString *)format, ...;
+ (void)logAsInfo: (NSString *)format, ...;
+ (void)logAsWarning: (NSString *)format, ...;
+ (void)logAsError: (NSString *)format, ...;
+ (id)indentDebugLog;
+ (id)unindentDebugLog;
+ (NSString *)debugIndentString;
@end
|