Skip to content

Commit 9ea8b10

Browse files
committed
Merge pull request #112016 from KoBeWi/fatal_blame
Fix verbose running message
2 parents eae5905 + 52775a8 commit 9ea8b10

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

editor/run/editor_run.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,13 @@ Error EditorRun::run(const String &p_scene, const String &p_write_movie, const V
168168
}
169169

170170
if (OS::get_singleton()->is_stdout_verbose()) {
171-
print_line(vformat("Running: %s", exec));
171+
PackedStringArray output;
172+
output.reserve_exact(instance_args.size() + 1);
173+
output.append(vformat("Running: %s", exec));
172174
for (const String &E : instance_args) {
173-
print_line(" %s", E);
175+
output.append(E);
174176
}
177+
print_line(String(" ").join(output));
175178
}
176179

177180
OS::ProcessID pid = 0;

0 commit comments

Comments
 (0)