summaryrefslogtreecommitdiffstats
path: root/Frameworks/LiBackend/LiLog.h
diff options
context:
space:
mode:
Diffstat (limited to 'Frameworks/LiBackend/LiLog.h')
-rw-r--r--Frameworks/LiBackend/LiLog.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Frameworks/LiBackend/LiLog.h b/Frameworks/LiBackend/LiLog.h
new file mode 100644
index 0000000..24043f0
--- /dev/null
+++ b/Frameworks/LiBackend/LiLog.h
@@ -0,0 +1,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