Skip to content

Commit

Permalink
Merge branch 'master' into add-IDEActivityLogActionMessage-support
Browse files Browse the repository at this point in the history
  • Loading branch information
mollyIV authored Nov 13, 2023
2 parents d87f70a + ab34d14 commit 5c6a86c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/XCLogParser/loglocation/LogError.swift
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ extension LogError: CustomStringConvertible {
switch self {
case .noDerivedDataFound:
return "We couldn't find the derivedData directory. " +
"If you use a custom derivedData directory, use the --derivedData option to pass it. "
"If you use a custom derivedData directory, use the --derived_data option to pass it. "
case .noLogFound(let dir):
return "We couldn't find a log in the directory \(dir). " +
"If the log is in a custom derivedData dir, use the --derivedData option. " +
"If the log is in a custom derivedData dir, use the --derived_data option. " +
"You can also pass the full path to the xcactivity log with the --file option"
case .xcodeBuildError(let error):
return error
Expand All @@ -52,7 +52,7 @@ extension LogError: CustomStringConvertible {
return "\(path) is not a valid xcactivitylog file"
case .noLogManifestFound(let path):
return "We couldn't find a logManifest in the path \(path). " +
"If the LogManifest is in a custom derivedData directory, use the --derivedData option."
"If the LogManifest is in a custom derivedData directory, use the --derived_data option."
case .invalidLogManifest(let path):
return "\(path) is not a valid LogManifest file"
}
Expand Down

0 comments on commit 5c6a86c

Please sign in to comment.