Skip to content

Commit 062f52e

Browse files
committed
πŸ’„ Add emojis by runtime lines in report
1 parent f6fd5d2 commit 062f52e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

β€Žsrc/SaveReport.cppβ€Ž

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,22 +118,22 @@ static std::string GenerateRuntimeText(
118118
const uint8_t bitness,
119119
const std::optional<Runtime>& runtime) {
120120
if (!runtime) {
121-
return std::format("Active {}-bit runtime: NONE\n", bitness);
121+
return std::format("❌ Active {}-bit runtime: NONE\n", bitness);
122122
}
123123

124124
if (!runtime->mName) {
125125
if (runtime->mName.error() != Runtime::ManifestError::FieldNotPresent) {
126126
return std::format(
127-
"Active {}-bit runtime: CORRUPTED - {}\n",
127+
"🚨 Active {}-bit runtime: CORRUPTED - {}\n",
128128
bitness,
129129
runtime->mPath.string());
130130
}
131131
return std::format(
132-
"Active {}-bit runtime: {}\n", bitness, runtime->mPath.string());
132+
"βœ… Active {}-bit runtime: {}\n", bitness, runtime->mPath.string());
133133
}
134134

135135
return std::format(
136-
"Active {}-bit runtime: \"{}\" - {}\n",
136+
"βœ… Active {}-bit runtime: \"{}\" - {}\n",
137137
bitness,
138138
runtime->mName.value(),
139139
runtime->mPath.string());

0 commit comments

Comments
Β (0)