File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Sources/SwiftKafka/RDKafka Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,12 @@ needs to be listed here.
1212### Contributors
1313
1414- Felix Schlegel <fefefe152@gmail.com>
15+ - Felix Schlegel <schlegel@apple.com>
16+ - Franz Busch <f.busch@apple.com>
1517- FranzBusch <f.busch@apple.com>
1618- SHILPEE GUPTA <78029920+shilpeegupta14@users.noreply.github.com>
19+ - Yim Lee <yim_lee@apple.com>
20+ - mr-swifter <103502437+mr-swifter@users.noreply.github.com>
1721
1822**Updating this list**
1923
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ struct RDKafkaConfig {
2626 typealias LoggingClosure = ( Int32 , UnsafePointer < CChar > , UnsafePointer < CChar > ) -> Void
2727 var loggingClosure : LoggingClosure ?
2828
29- init ( ) { }
29+ init ( ) { }
3030 }
3131
3232 /// Create a new `rd_kafka_conf_t` object in memory and initialize it with the given configuration properties.
@@ -140,7 +140,7 @@ struct RDKafkaConfig {
140140 let loggingClosure : RDKafkaConfig . CapturedClosures . LoggingClosure = { level, fac, buf in
141141 // Mapping according to https://en.wikipedia.org/wiki/Syslog
142142 switch level {
143- case 0 ... 2 : /* Emergency, Alert, Critical */
143+ case 0 ... 2 : /* Emergency, Alert, Critical */
144144 logger. critical ( Logger . Message ( stringLiteral: String ( cString: buf) ) , source: String ( cString: fac) )
145145 case 3 : /* Error */
146146 logger. error ( Logger . Message ( stringLiteral: String ( cString: buf) ) , source: String ( cString: fac) )
You can’t perform that action at this time.
0 commit comments