File tree 3 files changed +3
-3
lines changed
Test/AwsCommonRuntimeKitTests
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import AwsCCommon
5
5
var logger : aws_logger ?
6
6
7
7
public struct Logger {
8
- public static func initilize ( pipe: UnsafeMutablePointer < FILE > ? , level: LogLevel ) {
8
+ public static func initialize ( pipe: UnsafeMutablePointer < FILE > ? , level: LogLevel ) {
9
9
// Clean up the logger if it was previously initialized
10
10
if var logger = logger {
11
11
aws_logger_clean_up ( & logger)
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ struct Elasticurl {
225
225
Logger . initilize ( filePath: traceFile, level: context. logLevel)
226
226
} else {
227
227
print ( " enable logging with stdout " )
228
- Logger . initilize ( pipe: stdout, level: context. logLevel)
228
+ Logger . initialize ( pipe: stdout, level: context. logLevel)
229
229
}
230
230
231
231
await run ( )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ class XCBaseTestCase: XCTestCase {
10
10
11
11
override func setUp( ) {
12
12
super. setUp ( )
13
- Logger . initilize ( pipe: stdout, level: . trace)
13
+ Logger . initialize ( pipe: stdout, level: . trace)
14
14
15
15
// Override the allocator with tracing allocator
16
16
allocator = tracingAllocator. rawValue
You can’t perform that action at this time.
0 commit comments