motion-logger 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +2 -0
  3. data/README.md +3 -1
  4. data/Rakefile +2 -4
  5. data/lib/logger/version.rb +1 -1
  6. data/motion-logger.gemspec +3 -3
  7. metadata +28 -51
  8. data/vendor/Podfile.lock +0 -5
  9. data/vendor/Pods/CocoaLumberjack/.gitignore +0 -24
  10. data/vendor/Pods/CocoaLumberjack/.hgignore +0 -6
  11. data/vendor/Pods/CocoaLumberjack/CocoaLumberjack.podspec +0 -18
  12. data/vendor/Pods/CocoaLumberjack/LICENSE.txt +0 -18
  13. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.h +0 -41
  14. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDASLLogger.m +0 -99
  15. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.h +0 -102
  16. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDAbstractDatabaseLogger.m +0 -618
  17. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDFileLogger.h +0 -334
  18. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDFileLogger.m +0 -1346
  19. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDLog.h +0 -498
  20. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDLog.m +0 -979
  21. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDTTYLogger.h +0 -49
  22. data/vendor/Pods/CocoaLumberjack/Lumberjack/DDTTYLogger.m +0 -186
  23. data/vendor/Pods/CocoaLumberjack/README.markdown +0 -37
  24. data/vendor/Pods/Headers/CocoaLumberjack/DDASLLogger.h +0 -41
  25. data/vendor/Pods/Headers/CocoaLumberjack/DDAbstractDatabaseLogger.h +0 -102
  26. data/vendor/Pods/Headers/CocoaLumberjack/DDFileLogger.h +0 -334
  27. data/vendor/Pods/Headers/CocoaLumberjack/DDLog.h +0 -498
  28. data/vendor/Pods/Headers/CocoaLumberjack/DDTTYLogger.h +0 -49
  29. data/vendor/Pods/Pods-Acknowledgements.markdown +0 -24
  30. data/vendor/Pods/Pods-Acknowledgements.plist +0 -54
  31. data/vendor/Pods/Pods-prefix.pch +0 -3
  32. data/vendor/Pods/Pods-resources.sh +0 -19
  33. data/vendor/Pods/Pods.bridgesupport +0 -462
  34. data/vendor/Pods/Pods.xcconfig +0 -4
  35. data/vendor/Pods/PodsDummy_Pods.m +0 -4
@@ -1,49 +0,0 @@
1
- #import <Foundation/Foundation.h>
2
-
3
- #import "DDLog.h"
4
-
5
- /**
6
- * Welcome to Cocoa Lumberjack!
7
- *
8
- * The project page has a wealth of documentation if you have any questions.
9
- * https://github.com/robbiehanson/CocoaLumberjack
10
- *
11
- * If you're new to the project you may wish to read the "Getting Started" wiki.
12
- * https://github.com/robbiehanson/CocoaLumberjack/wiki/GettingStarted
13
- *
14
- *
15
- * This class provides a logger for Terminal output or Xcode console output,
16
- * depending on where you are running your code.
17
- *
18
- * As described in the "Getting Started" page,
19
- * the traditional NSLog() function directs it's output to two places:
20
- *
21
- * - Apple System Log (so it shows up in Console.app)
22
- * - StdErr (if stderr is a TTY, so log statements show up in Xcode console)
23
- *
24
- * To duplicate NSLog() functionality you can simply add this logger and an asl logger.
25
- * However, if you instead choose to use file logging (for faster performance),
26
- * you may choose to use only a file logger and a tty logger.
27
- **/
28
-
29
- @interface DDTTYLogger : DDAbstractLogger <DDLogger>
30
- {
31
- BOOL isaTTY;
32
-
33
- NSDateFormatter *dateFormatter;
34
-
35
- char *app; // Not null terminated
36
- char *pid; // Not null terminated
37
-
38
- size_t appLen;
39
- size_t pidLen;
40
- }
41
-
42
- + (DDTTYLogger *)sharedInstance;
43
-
44
- // Inherited from DDAbstractLogger
45
-
46
- // - (id <DDLogFormatter>)logFormatter;
47
- // - (void)setLogFormatter:(id <DDLogFormatter>)formatter;
48
-
49
- @end
@@ -1,24 +0,0 @@
1
- # Acknowledgements
2
- This application makes use of the following third party libraries:
3
-
4
- ## CocoaLumberjack
5
-
6
- Software License Agreement (BSD License)
7
-
8
- Copyright (c) 2010, Deusty, LLC
9
- All rights reserved.
10
-
11
- Redistribution and use of this software in source and binary forms,
12
- with or without modification, are permitted provided that the following conditions are met:
13
-
14
- * Redistributions of source code must retain the above
15
- copyright notice, this list of conditions and the
16
- following disclaimer.
17
-
18
- * Neither the name of Deusty nor the names of its
19
- contributors may be used to endorse or promote products
20
- derived from this software without specific prior
21
- written permission of Deusty, LLC.
22
-
23
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24
- Generated by CocoaPods - http://cocoapods.org
@@ -1,54 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>PreferenceSpecifiers</key>
6
- <array>
7
- <dict>
8
- <key>FooterText</key>
9
- <string>This application makes use of the following third party libraries:</string>
10
- <key>Title</key>
11
- <string>Acknowledgements</string>
12
- <key>Type</key>
13
- <string>PSGroupSpecifier</string>
14
- </dict>
15
- <dict>
16
- <key>FooterText</key>
17
- <string>Software License Agreement (BSD License)
18
-
19
- Copyright (c) 2010, Deusty, LLC
20
- All rights reserved.
21
-
22
- Redistribution and use of this software in source and binary forms,
23
- with or without modification, are permitted provided that the following conditions are met:
24
-
25
- * Redistributions of source code must retain the above
26
- copyright notice, this list of conditions and the
27
- following disclaimer.
28
-
29
- * Neither the name of Deusty nor the names of its
30
- contributors may be used to endorse or promote products
31
- derived from this software without specific prior
32
- written permission of Deusty, LLC.
33
-
34
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</string>
35
- <key>Title</key>
36
- <string>CocoaLumberjack</string>
37
- <key>Type</key>
38
- <string>PSGroupSpecifier</string>
39
- </dict>
40
- <dict>
41
- <key>FooterText</key>
42
- <string>Generated by CocoaPods - http://cocoapods.org</string>
43
- <key>Title</key>
44
- <string></string>
45
- <key>Type</key>
46
- <string>PSGroupSpecifier</string>
47
- </dict>
48
- </array>
49
- <key>StringsTable</key>
50
- <string>Acknowledgements</string>
51
- <key>Title</key>
52
- <string>Acknowledgements</string>
53
- </dict>
54
- </plist>
@@ -1,3 +0,0 @@
1
- #ifdef __OBJC__
2
- #import <UIKit/UIKit.h>
3
- #endif
@@ -1,19 +0,0 @@
1
- #!/bin/sh
2
-
3
- install_resource()
4
- {
5
- case $1 in
6
- *.storyboard)
7
- echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
8
- ibtool --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
9
- ;;
10
- *.xib)
11
- echo "ibtool --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}"
12
- ibtool --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename $1 .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}"
13
- ;;
14
- *)
15
- echo "cp -R ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
16
- cp -R "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
17
- ;;
18
- esac
19
- }
@@ -1,462 +0,0 @@
1
- <?xml version='1.0'?>
2
- <signatures version='1.0'>
3
- <enum name='DEFAULT_LOG_MAX_FILE_SIZE' value='1048576'/>
4
- <enum name='DEFAULT_LOG_MAX_NUM_LOG_FILES' value='5'/>
5
- <enum name='DEFAULT_LOG_ROLLING_FREQUENCY' value='86400'/>
6
- <enum name='LOG_ASYNC_ENABLED' value='1'/>
7
- <enum name='LOG_ASYNC_ERROR' value='0'/>
8
- <enum name='LOG_ASYNC_INFO' value='1'/>
9
- <enum name='LOG_ASYNC_VERBOSE' value='1'/>
10
- <enum name='LOG_ASYNC_WARN' value='1'/>
11
- <enum name='LOG_FLAG_ERROR' value='1'/>
12
- <enum name='LOG_FLAG_INFO' value='4'/>
13
- <enum name='LOG_FLAG_VERBOSE' value='8'/>
14
- <enum name='LOG_FLAG_WARN' value='2'/>
15
- <enum name='LOG_LEVEL_ERROR' value='1'/>
16
- <enum name='LOG_LEVEL_INFO' value='7'/>
17
- <enum name='LOG_LEVEL_OFF' value='0'/>
18
- <enum name='LOG_LEVEL_VERBOSE' value='15'/>
19
- <enum name='LOG_LEVEL_WARN' value='3'/>
20
- <function name='DDExtractFileNameWithoutExtension'>
21
- <arg name='filePath' const='true' declared_type='char*' type='*'/>
22
- <arg name='copy' declared_type='BOOL' type='B'/>
23
- <retval declared_type='NSString*' type='@'/>
24
- </function>
25
- <class name='DDASLLogger'>
26
- <method class_method='true' selector='sharedInstance'>
27
- <retval declared_type='DDASLLogger*' type='@'/>
28
- </method>
29
- </class>
30
- <class name='DDAbstractDatabaseLogger'>
31
- <method selector='deleteInterval'>
32
- <retval declared_type='NSTimeInterval' type='d'/>
33
- </method>
34
- <method selector='deleteOldLogEntries'>
35
- <retval declared_type='void' type='v'/>
36
- </method>
37
- <method selector='deleteOnEverySave'>
38
- <retval declared_type='BOOL' type='B'/>
39
- </method>
40
- <method selector='maxAge'>
41
- <retval declared_type='NSTimeInterval' type='d'/>
42
- </method>
43
- <method selector='saveInterval'>
44
- <retval declared_type='NSTimeInterval' type='d'/>
45
- </method>
46
- <method selector='savePendingLogEntries'>
47
- <retval declared_type='void' type='v'/>
48
- </method>
49
- <method selector='saveThreshold'>
50
- <retval type64='Q' declared_type='NSUInteger' type='I'/>
51
- </method>
52
- <method selector='setDeleteInterval:'>
53
- <arg name='deleteInterval' declared_type='NSTimeInterval' type='d' index='0'/>
54
- <retval declared_type='void' type='v'/>
55
- </method>
56
- <method selector='setDeleteOnEverySave:'>
57
- <arg name='deleteOnEverySave' declared_type='BOOL' type='B' index='0'/>
58
- <retval declared_type='void' type='v'/>
59
- </method>
60
- <method selector='setMaxAge:'>
61
- <arg name='maxAge' declared_type='NSTimeInterval' type='d' index='0'/>
62
- <retval declared_type='void' type='v'/>
63
- </method>
64
- <method selector='setSaveInterval:'>
65
- <arg name='saveInterval' declared_type='NSTimeInterval' type='d' index='0'/>
66
- <retval declared_type='void' type='v'/>
67
- </method>
68
- <method selector='setSaveThreshold:'>
69
- <arg name='saveThreshold' type64='Q' declared_type='NSUInteger' type='I' index='0'/>
70
- <retval declared_type='void' type='v'/>
71
- </method>
72
- </class>
73
- <class name='DDAbstractLogger'>
74
- <method selector='logFormatter'>
75
- <retval declared_type='id' type='@'/>
76
- </method>
77
- <method selector='setLogFormatter:'>
78
- <arg name='formatter' declared_type='id' type='@' index='0'/>
79
- <retval declared_type='void' type='v'/>
80
- </method>
81
- </class>
82
- <class name='DDFileLogger'>
83
- <method selector='init'>
84
- <retval declared_type='id' type='@'/>
85
- </method>
86
- <method selector='initWithLogFileManager:'>
87
- <arg name='logFileManager' declared_type='id' type='@' index='0'/>
88
- <retval declared_type='id' type='@'/>
89
- </method>
90
- <method selector='logFileManager'>
91
- <retval declared_type='id' type='@'/>
92
- </method>
93
- <method selector='maximumFileSize'>
94
- <retval declared_type='unsigned long long' type='Q'/>
95
- </method>
96
- <method selector='rollLogFile'>
97
- <retval declared_type='void' type='v'/>
98
- </method>
99
- <method selector='rollingFrequency'>
100
- <retval declared_type='NSTimeInterval' type='d'/>
101
- </method>
102
- <method selector='setLogFileManager:'>
103
- <arg name='logFileManager' declared_type='id' type='@' index='0'/>
104
- <retval declared_type='void' type='v'/>
105
- </method>
106
- <method selector='setMaximumFileSize:'>
107
- <arg name='maximumFileSize' declared_type='unsigned long long' type='Q' index='0'/>
108
- <retval declared_type='void' type='v'/>
109
- </method>
110
- <method selector='setRollingFrequency:'>
111
- <arg name='rollingFrequency' declared_type='NSTimeInterval' type='d' index='0'/>
112
- <retval declared_type='void' type='v'/>
113
- </method>
114
- </class>
115
- <class name='DDLog'>
116
- <method class_method='true' selector='addLogger:'>
117
- <arg name='logger' declared_type='id' type='@' index='0'/>
118
- <retval declared_type='void' type='v'/>
119
- </method>
120
- <method class_method='true' selector='flushLog'>
121
- <retval declared_type='void' type='v'/>
122
- </method>
123
- <method variadic='true' class_method='true' selector='log:level:flag:context:file:function:line:tag:format:'>
124
- <arg name='synchronous' declared_type='BOOL' type='B' index='0'/>
125
- <arg name='level' declared_type='int' type='i' index='1'/>
126
- <arg name='flag' declared_type='int' type='i' index='2'/>
127
- <arg name='context' declared_type='int' type='i' index='3'/>
128
- <arg name='file' const='true' declared_type='char*' type='*' index='4'/>
129
- <arg name='function' const='true' declared_type='char*' type='*' index='5'/>
130
- <arg name='line' declared_type='int' type='i' index='6'/>
131
- <arg name='tag' declared_type='id' type='@' index='7'/>
132
- <arg name='format' declared_type='NSString*' type='@' printf_format='true' index='8'/>
133
- <retval declared_type='void' type='v'/>
134
- </method>
135
- <method class_method='true' selector='logLevelForClass:'>
136
- <arg name='aClass' declared_type='Class' type='#' index='0'/>
137
- <retval declared_type='int' type='i'/>
138
- </method>
139
- <method class_method='true' selector='logLevelForClassWithName:'>
140
- <arg name='aClassName' declared_type='NSString*' type='@' index='0'/>
141
- <retval declared_type='int' type='i'/>
142
- </method>
143
- <method class_method='true' selector='loggingQueue'>
144
- <retval declared_type='dispatch_queue_t' type='^{dispatch_queue_s=}'/>
145
- </method>
146
- <method class_method='true' selector='registeredClassNames'>
147
- <retval declared_type='NSArray*' type='@'/>
148
- </method>
149
- <method class_method='true' selector='registeredClasses'>
150
- <retval declared_type='NSArray*' type='@'/>
151
- </method>
152
- <method class_method='true' selector='removeAllLoggers'>
153
- <retval declared_type='void' type='v'/>
154
- </method>
155
- <method class_method='true' selector='removeLogger:'>
156
- <arg name='logger' declared_type='id' type='@' index='0'/>
157
- <retval declared_type='void' type='v'/>
158
- </method>
159
- <method class_method='true' selector='setLogLevel:forClass:'>
160
- <arg name='logLevel' declared_type='int' type='i' index='0'/>
161
- <arg name='aClass' declared_type='Class' type='#' index='1'/>
162
- <retval declared_type='void' type='v'/>
163
- </method>
164
- <method class_method='true' selector='setLogLevel:forClassWithName:'>
165
- <arg name='logLevel' declared_type='int' type='i' index='0'/>
166
- <arg name='aClassName' declared_type='NSString*' type='@' index='1'/>
167
- <retval declared_type='void' type='v'/>
168
- </method>
169
- </class>
170
- <class name='DDLogFileFormatterDefault'>
171
- <method selector='init'>
172
- <retval declared_type='id' type='@'/>
173
- </method>
174
- <method selector='initWithDateFormatter:'>
175
- <arg name='dateFormatter' declared_type='NSDateFormatter*' type='@' index='0'/>
176
- <retval declared_type='id' type='@'/>
177
- </method>
178
- </class>
179
- <class name='DDLogFileInfo'>
180
- <method selector='addExtensionAttributeWithName:'>
181
- <arg name='attrName' declared_type='NSString*' type='@' index='0'/>
182
- <retval declared_type='void' type='v'/>
183
- </method>
184
- <method selector='age'>
185
- <retval declared_type='NSTimeInterval' type='d'/>
186
- </method>
187
- <method selector='creationDate'>
188
- <retval declared_type='NSDate*' type='@'/>
189
- </method>
190
- <method selector='fileAttributes'>
191
- <retval declared_type='NSDictionary*' type='@'/>
192
- </method>
193
- <method selector='fileName'>
194
- <retval declared_type='NSString*' type='@'/>
195
- </method>
196
- <method selector='filePath'>
197
- <retval declared_type='NSString*' type='@'/>
198
- </method>
199
- <method selector='fileSize'>
200
- <retval declared_type='unsigned long long' type='Q'/>
201
- </method>
202
- <method selector='hasExtensionAttributeWithName:'>
203
- <arg name='attrName' declared_type='NSString*' type='@' index='0'/>
204
- <retval declared_type='BOOL' type='B'/>
205
- </method>
206
- <method selector='initWithFilePath:'>
207
- <arg name='filePath' declared_type='NSString*' type='@' index='0'/>
208
- <retval declared_type='id' type='@'/>
209
- </method>
210
- <method selector='isArchived'>
211
- <retval declared_type='BOOL' type='B'/>
212
- </method>
213
- <method class_method='true' selector='logFileWithPath:'>
214
- <arg name='filePath' declared_type='NSString*' type='@' index='0'/>
215
- <retval declared_type='id' type='@'/>
216
- </method>
217
- <method selector='modificationDate'>
218
- <retval declared_type='NSDate*' type='@'/>
219
- </method>
220
- <method selector='removeExtensionAttributeWithName:'>
221
- <arg name='attrName' declared_type='NSString*' type='@' index='0'/>
222
- <retval declared_type='void' type='v'/>
223
- </method>
224
- <method selector='renameFile:'>
225
- <arg name='newFileName' declared_type='NSString*' type='@' index='0'/>
226
- <retval declared_type='void' type='v'/>
227
- </method>
228
- <method selector='reset'>
229
- <retval declared_type='void' type='v'/>
230
- </method>
231
- <method selector='reverseCompareByCreationDate:'>
232
- <arg name='another' declared_type='DDLogFileInfo*' type='@' index='0'/>
233
- <retval type64='q' declared_type='NSComparisonResult' type='i'/>
234
- </method>
235
- <method selector='reverseCompareByModificationDate:'>
236
- <arg name='another' declared_type='DDLogFileInfo*' type='@' index='0'/>
237
- <retval type64='q' declared_type='NSComparisonResult' type='i'/>
238
- </method>
239
- <method selector='setCreationDate:'>
240
- <arg name='creationDate' declared_type='NSDate*' type='@' index='0'/>
241
- <retval declared_type='void' type='v'/>
242
- </method>
243
- <method selector='setFileAttributes:'>
244
- <arg name='fileAttributes' declared_type='NSDictionary*' type='@' index='0'/>
245
- <retval declared_type='void' type='v'/>
246
- </method>
247
- <method selector='setFileName:'>
248
- <arg name='fileName' declared_type='NSString*' type='@' index='0'/>
249
- <retval declared_type='void' type='v'/>
250
- </method>
251
- <method selector='setFilePath:'>
252
- <arg name='filePath' declared_type='NSString*' type='@' index='0'/>
253
- <retval declared_type='void' type='v'/>
254
- </method>
255
- <method selector='setIsArchived:'>
256
- <arg name='isArchived' declared_type='BOOL' type='B' index='0'/>
257
- <retval declared_type='void' type='v'/>
258
- </method>
259
- <method selector='setModificationDate:'>
260
- <arg name='modificationDate' declared_type='NSDate*' type='@' index='0'/>
261
- <retval declared_type='void' type='v'/>
262
- </method>
263
- </class>
264
- <class name='DDLogFileManagerDefault'>
265
- <method selector='init'>
266
- <retval declared_type='id' type='@'/>
267
- </method>
268
- <method selector='initWithLogsDirectory:'>
269
- <arg name='logsDirectory' declared_type='NSString*' type='@' index='0'/>
270
- <retval declared_type='id' type='@'/>
271
- </method>
272
- </class>
273
- <class name='DDLogMessage'>
274
- <method selector='fileName'>
275
- <retval declared_type='NSString*' type='@'/>
276
- </method>
277
- <method selector='initWithLogMsg:level:flag:context:file:function:line:tag:'>
278
- <arg name='logMsg' declared_type='NSString*' type='@' index='0'/>
279
- <arg name='logLevel' declared_type='int' type='i' index='1'/>
280
- <arg name='logFlag' declared_type='int' type='i' index='2'/>
281
- <arg name='logContext' declared_type='int' type='i' index='3'/>
282
- <arg name='file' const='true' declared_type='char*' type='*' index='4'/>
283
- <arg name='function' const='true' declared_type='char*' type='*' index='5'/>
284
- <arg name='line' declared_type='int' type='i' index='6'/>
285
- <arg name='tag' declared_type='id' type='@' index='7'/>
286
- <retval declared_type='id' type='@'/>
287
- </method>
288
- <method selector='methodName'>
289
- <retval declared_type='NSString*' type='@'/>
290
- </method>
291
- <method selector='threadID'>
292
- <retval declared_type='NSString*' type='@'/>
293
- </method>
294
- </class>
295
- <class name='DDTTYLogger'>
296
- <method class_method='true' selector='sharedInstance'>
297
- <retval declared_type='DDTTYLogger*' type='@'/>
298
- </method>
299
- </class>
300
- <class name='NSObject'>
301
- <method selector='createNewLogFile'>
302
- <retval declared_type='NSString*' type='@'/>
303
- </method>
304
- <method class_method='true' selector='ddLogLevel'>
305
- <retval declared_type='int' type='i'/>
306
- </method>
307
- <method class_method='true' selector='ddSetLogLevel:'>
308
- <arg name='logLevel' declared_type='int' type='i' index='0'/>
309
- <retval declared_type='void' type='v'/>
310
- </method>
311
- <method selector='didAddLogger'>
312
- <retval declared_type='void' type='v'/>
313
- </method>
314
- <method selector='didArchiveLogFile:'>
315
- <arg name='logFilePath' declared_type='NSString*' type='@' index='0'/>
316
- <retval declared_type='void' type='v'/>
317
- </method>
318
- <method selector='didRollAndArchiveLogFile:'>
319
- <arg name='logFilePath' declared_type='NSString*' type='@' index='0'/>
320
- <retval declared_type='void' type='v'/>
321
- </method>
322
- <method selector='flush'>
323
- <retval declared_type='void' type='v'/>
324
- </method>
325
- <method selector='formatLogMessage:'>
326
- <arg name='logMessage' declared_type='DDLogMessage*' type='@' index='0'/>
327
- <retval declared_type='NSString*' type='@'/>
328
- </method>
329
- <method selector='logFormatter'>
330
- <retval declared_type='id' type='@'/>
331
- </method>
332
- <method selector='logMessage:'>
333
- <arg name='logMessage' declared_type='DDLogMessage*' type='@' index='0'/>
334
- <retval declared_type='void' type='v'/>
335
- </method>
336
- <method selector='loggerName'>
337
- <retval declared_type='NSString*' type='@'/>
338
- </method>
339
- <method selector='loggerQueue'>
340
- <retval declared_type='dispatch_queue_t' type='^{dispatch_queue_s=}'/>
341
- </method>
342
- <method selector='logsDirectory'>
343
- <retval declared_type='NSString*' type='@'/>
344
- </method>
345
- <method selector='maximumNumberOfLogFiles'>
346
- <retval type64='Q' declared_type='NSUInteger' type='I'/>
347
- </method>
348
- <method selector='setLogFormatter:'>
349
- <arg name='formatter' declared_type='id' type='@' index='0'/>
350
- <retval declared_type='void' type='v'/>
351
- </method>
352
- <method selector='setMaximumNumberOfLogFiles:'>
353
- <arg name='maximumNumberOfLogFiles' type64='Q' declared_type='NSUInteger' type='I' index='0'/>
354
- <retval declared_type='void' type='v'/>
355
- </method>
356
- <method selector='sortedLogFileInfos'>
357
- <retval declared_type='NSArray*' type='@'/>
358
- </method>
359
- <method selector='sortedLogFileNames'>
360
- <retval declared_type='NSArray*' type='@'/>
361
- </method>
362
- <method selector='sortedLogFilePaths'>
363
- <retval declared_type='NSArray*' type='@'/>
364
- </method>
365
- <method selector='unsortedLogFileInfos'>
366
- <retval declared_type='NSArray*' type='@'/>
367
- </method>
368
- <method selector='unsortedLogFileNames'>
369
- <retval declared_type='NSArray*' type='@'/>
370
- </method>
371
- <method selector='unsortedLogFilePaths'>
372
- <retval declared_type='NSArray*' type='@'/>
373
- </method>
374
- <method selector='willRemoveLogger'>
375
- <retval declared_type='void' type='v'/>
376
- </method>
377
- </class>
378
- <informal_protocol name='DDLogFileManager'>
379
- <method type64='@16@0:8' type='@8@0:4' selector='createNewLogFile'>
380
- <retval declared_type='NSString*' type='@'/>
381
- </method>
382
- <method type64='v24@0:8@16' type='v12@0:4@8' selector='didArchiveLogFile:'>
383
- <arg name='logFilePath' declared_type='NSString*' type='@' index='0'/>
384
- <retval declared_type='void' type='v'/>
385
- </method>
386
- <method type64='v24@0:8@16' type='v12@0:4@8' selector='didRollAndArchiveLogFile:'>
387
- <arg name='logFilePath' declared_type='NSString*' type='@' index='0'/>
388
- <retval declared_type='void' type='v'/>
389
- </method>
390
- <method type64='@16@0:8' type='@8@0:4' selector='logsDirectory'>
391
- <retval declared_type='NSString*' type='@'/>
392
- </method>
393
- <method type64='Q16@0:8' type='I8@0:4' selector='maximumNumberOfLogFiles'>
394
- <retval type64='Q' declared_type='NSUInteger' type='I'/>
395
- </method>
396
- <method type64='v24@0:8Q16' type='v12@0:4I8' selector='setMaximumNumberOfLogFiles:'>
397
- <arg name='maximumNumberOfLogFiles' type64='Q' declared_type='NSUInteger' type='I' index='0'/>
398
- <retval declared_type='void' type='v'/>
399
- </method>
400
- <method type64='@16@0:8' type='@8@0:4' selector='sortedLogFileInfos'>
401
- <retval declared_type='NSArray*' type='@'/>
402
- </method>
403
- <method type64='@16@0:8' type='@8@0:4' selector='sortedLogFileNames'>
404
- <retval declared_type='NSArray*' type='@'/>
405
- </method>
406
- <method type64='@16@0:8' type='@8@0:4' selector='sortedLogFilePaths'>
407
- <retval declared_type='NSArray*' type='@'/>
408
- </method>
409
- <method type64='@16@0:8' type='@8@0:4' selector='unsortedLogFileInfos'>
410
- <retval declared_type='NSArray*' type='@'/>
411
- </method>
412
- <method type64='@16@0:8' type='@8@0:4' selector='unsortedLogFileNames'>
413
- <retval declared_type='NSArray*' type='@'/>
414
- </method>
415
- <method type64='@16@0:8' type='@8@0:4' selector='unsortedLogFilePaths'>
416
- <retval declared_type='NSArray*' type='@'/>
417
- </method>
418
- </informal_protocol>
419
- <informal_protocol name='DDLogFormatter'>
420
- <method type64='@24@0:8@16' type='@12@0:4@8' selector='formatLogMessage:'>
421
- <arg name='logMessage' declared_type='DDLogMessage*' type='@' index='0'/>
422
- <retval declared_type='NSString*' type='@'/>
423
- </method>
424
- </informal_protocol>
425
- <informal_protocol name='DDLogger'>
426
- <method type64='v16@0:8' type='v8@0:4' selector='didAddLogger'>
427
- <retval declared_type='void' type='v'/>
428
- </method>
429
- <method type64='v16@0:8' type='v8@0:4' selector='flush'>
430
- <retval declared_type='void' type='v'/>
431
- </method>
432
- <method type64='@16@0:8' type='@8@0:4' selector='logFormatter'>
433
- <retval declared_type='id' type='@'/>
434
- </method>
435
- <method type64='v24@0:8@16' type='v12@0:4@8' selector='logMessage:'>
436
- <arg name='logMessage' declared_type='DDLogMessage*' type='@' index='0'/>
437
- <retval declared_type='void' type='v'/>
438
- </method>
439
- <method type64='@16@0:8' type='@8@0:4' selector='loggerName'>
440
- <retval declared_type='NSString*' type='@'/>
441
- </method>
442
- <method type64='^{dispatch_queue_s=}16@0:8' type='^{dispatch_queue_s=}8@0:4' selector='loggerQueue'>
443
- <retval declared_type='dispatch_queue_t' type='^{dispatch_queue_s=}'/>
444
- </method>
445
- <method type64='v24@0:8@16' type='v12@0:4@8' selector='setLogFormatter:'>
446
- <arg name='formatter' declared_type='id' type='@' index='0'/>
447
- <retval declared_type='void' type='v'/>
448
- </method>
449
- <method type64='v16@0:8' type='v8@0:4' selector='willRemoveLogger'>
450
- <retval declared_type='void' type='v'/>
451
- </method>
452
- </informal_protocol>
453
- <informal_protocol name='DDRegisteredDynamicLogging'>
454
- <method type64='i16@0:8' type='i8@0:4' class_method='true' selector='ddLogLevel'>
455
- <retval declared_type='int' type='i'/>
456
- </method>
457
- <method type64='v20@0:8i16' type='v12@0:4i8' class_method='true' selector='ddSetLogLevel:'>
458
- <arg name='logLevel' declared_type='int' type='i' index='0'/>
459
- <retval declared_type='void' type='v'/>
460
- </method>
461
- </informal_protocol>
462
- </signatures>