Skip to content
This repository was archived by the owner on Feb 14, 2025. It is now read-only.

Commit feec64b

Browse files
committed
Fixes
1 parent e20cb21 commit feec64b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Sources/VirtualOSLogging/Logger.swift

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ extension Logger {
2727
public static func makeDefaultLogger(logFilePath: AbsolutePath) -> Logger {
2828
Logger(label: "dev.tuist.virtualos") { label in
2929
MultiplexLogHandler([
30+
// swiftlint:disable:next force_try
3031
try! FileLogHandler(label: label, localFile: URL(fileURLWithPath: logFilePath.pathString)),
3132
LoggingOSLog(label: label),
3233
])

Tuist/ProjectDescriptionHelpers/Module.swift

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ public enum Module: CaseIterable {
5757
.external(name: "ArgumentParser"),
5858
.external(name: "Logging"),
5959
.external(name: "Path"),
60+
.external(name: "FileSystem"),
6061
]
6162
case .pull: return [
6263
.target(name: Module.logging.targetName),

0 commit comments

Comments
 (0)