This repository was archived by the owner on Jan 11, 2023. It is now read-only.
File tree 4 files changed +3
-48
lines changed
4 files changed +3
-48
lines changed Original file line number Diff line number Diff line change @@ -33,11 +33,6 @@ Pod::Spec.new do |s|
33
33
cs . osx . framework = 'SystemConfiguration'
34
34
end
35
35
36
- s . subspec "CocoaLumberjack" do |cs |
37
- cs . dependency 'GCDWebServer/Core'
38
- cs . dependency 'CocoaLumberjack' , '~> 3'
39
- end
40
-
41
36
s . subspec 'WebDAV' do |cs |
42
37
cs . subspec "Core" do |ccs |
43
38
ccs . dependency 'GCDWebServer/Core'
@@ -48,11 +43,6 @@ Pod::Spec.new do |s|
48
43
ccs . osx . library = 'xml2'
49
44
ccs . compiler_flags = '-I$(SDKROOT)/usr/include/libxml2'
50
45
end
51
-
52
- cs . subspec "CocoaLumberjack" do |cscl |
53
- cscl . dependency 'GCDWebServer/WebDAV/Core'
54
- cscl . dependency 'GCDWebServer/CocoaLumberjack'
55
- end
56
46
end
57
47
58
48
s . subspec 'WebUploader' do |cs |
@@ -62,10 +52,5 @@ Pod::Spec.new do |s|
62
52
ccs . requires_arc = true
63
53
ccs . resource = "GCDWebUploader/GCDWebUploader.bundle"
64
54
end
65
-
66
- cs . subspec "CocoaLumberjack" do |cscl |
67
- cscl . dependency 'GCDWebServer/WebUploader/Core'
68
- cscl . dependency 'GCDWebServer/CocoaLumberjack'
69
- end
70
55
end
71
56
end
Original file line number Diff line number Diff line change @@ -532,11 +532,10 @@ extern NSString* const GCDWebServerAuthenticationMethod_DigestAccess;
532
532
*
533
533
* Currently supported third-party logging facilities are:
534
534
* - XLFacility (by the same author as GCDWebServer): https://github.com/swisspol/XLFacility
535
- * - CocoaLumberjack: https://github.com/CocoaLumberjack/CocoaLumberjack
536
535
*
537
- * For both the built-in logging facility and CocoaLumberjack , the default
538
- * logging level is INFO (or DEBUG if the preprocessor constant "DEBUG"
539
- * evaluates to non-zero at compile time).
536
+ * For the built-in logging facility, the default logging level is INFO
537
+ * (or DEBUG if the preprocessor constant "DEBUG" evaluates to non-zero at
538
+ * compile time).
540
539
*
541
540
* It's possible to have GCDWebServer use a custom logging facility by defining
542
541
* the "__GCDWEBSERVER_LOGGING_HEADER__" preprocessor constant in Xcode build
Original file line number Diff line number Diff line change 77
77
#else
78
78
GCDWebServerLoggingLevel GCDWebServerLogLevel = kGCDWebServerLoggingLevel_Info ;
79
79
#endif
80
- #elif defined(__GCDWEBSERVER_LOGGING_FACILITY_COCOALUMBERJACK__)
81
- #if DEBUG
82
- DDLogLevel GCDWebServerLogLevel = DDLogLevelDebug;
83
- #else
84
- DDLogLevel GCDWebServerLogLevel = DDLogLevelInfo;
85
- #endif
86
80
#endif
87
81
88
82
#if !TARGET_OS_IPHONE
@@ -1092,8 +1086,6 @@ @implementation GCDWebServer (Logging)
1092
1086
+ (void )setLogLevel : (int )level {
1093
1087
#if defined(__GCDWEBSERVER_LOGGING_FACILITY_XLFACILITY__)
1094
1088
[XLSharedFacility setMinLogLevel: level];
1095
- #elif defined(__GCDWEBSERVER_LOGGING_FACILITY_COCOALUMBERJACK__)
1096
- GCDWebServerLogLevel = level;
1097
1089
#elif defined(__GCDWEBSERVER_LOGGING_FACILITY_BUILTIN__)
1098
1090
GCDWebServerLogLevel = level;
1099
1091
#endif
Original file line number Diff line number Diff line change @@ -83,27 +83,6 @@ NS_ASSUME_NONNULL_BEGIN
83
83
#define GWS_DCHECK (__CONDITION__ ) XLOG_DEBUG_CHECK(__CONDITION__)
84
84
#define GWS_DNOT_REACHED () XLOG_DEBUG_UNREACHABLE()
85
85
86
- /* *
87
- * Automatically detect if CocoaLumberJack is available and if so use
88
- * it as a logging facility.
89
- */
90
-
91
- #elif defined(__has_include) && __has_include("CocoaLumberjack/CocoaLumberjack.h")
92
-
93
- #import < CocoaLumberjack/CocoaLumberjack.h>
94
-
95
- #define __GCDWEBSERVER_LOGGING_FACILITY_COCOALUMBERJACK__
96
-
97
- #undef LOG_LEVEL_DEF
98
- #define LOG_LEVEL_DEF GCDWebServerLogLevel
99
- extern DDLogLevel GCDWebServerLogLevel;
100
-
101
- #define GWS_LOG_DEBUG (...) DDLogDebug(__VA_ARGS__)
102
- #define GWS_LOG_VERBOSE (...) DDLogVerbose(__VA_ARGS__)
103
- #define GWS_LOG_INFO (...) DDLogInfo(__VA_ARGS__)
104
- #define GWS_LOG_WARNING (...) DDLogWarn(__VA_ARGS__)
105
- #define GWS_LOG_ERROR (...) DDLogError(__VA_ARGS__)
106
-
107
86
/* *
108
87
* If all of the above fail, then use GCDWebServer built-in
109
88
* logging facility.
You can’t perform that action at this time.
0 commit comments