Skip to content

Commit 641cb66

Browse files
ivanvorobeiclaude
andcommitted
Remove Logger module
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 9a544f9 commit 641cb66

File tree

2 files changed

+4
-98
lines changed

2 files changed

+4
-98
lines changed

Sources/SwiftBoost/Foundation/Extensions/FileManager/FileManagerExtension.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ extension FileManager {
1414
do {
1515
return try Data(contentsOf: destination.url)
1616
} catch {
17-
debug("Can't get data, error: \(error.localizedDescription)")
17+
print("Can't get data, error: \(error.localizedDescription)")
1818
return nil
1919
}
2020
}
@@ -28,7 +28,7 @@ extension FileManager {
2828
// Save file to directory
2929
try data.write(to: destination.url, options: .atomicWrite)
3030
} catch {
31-
debug("Can't save data, error: \(error.localizedDescription)")
31+
print("Can't save data, error: \(error.localizedDescription)")
3232
}
3333
}
3434

@@ -38,7 +38,7 @@ extension FileManager {
3838
try removeItem(at: destination.url)
3939
}
4040
} catch {
41-
debug("Can't delete data, error: \(error.localizedDescription)")
41+
print("Can't delete data, error: \(error.localizedDescription)")
4242
}
4343
}
4444

@@ -48,7 +48,7 @@ extension FileManager {
4848
try removeItem(at: url)
4949
}
5050
} catch {
51-
debug("Can't delete data, error: \(error.localizedDescription)")
51+
print("Can't delete data, error: \(error.localizedDescription)")
5252
}
5353
}
5454
}

Sources/SwiftBoost/Foundation/Logger.swift

Lines changed: 0 additions & 94 deletions
This file was deleted.

0 commit comments

Comments
 (0)