Skip to content

Commit

Permalink
Don't log Imperator's standard output (#2051)
Browse files Browse the repository at this point in the history
  • Loading branch information
IhateTrains authored Jul 6, 2024
1 parent 3b5d3fb commit 98086b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: "Integration tests"

on:
push: # TODO: remove this when integration tests cleanup works correctly
branches:
- master
release:
types: [published]

Expand Down
1 change: 0 additions & 1 deletion ImperatorToCK3/Imperator/World.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ private static EventHandler HandleImperatorProcessExit(Configuration config, Pro
return (_, _) => {
Logger.Debug($"Imperator process exited with code {imperatorProcess.ExitCode}. Removing temporary mod files...");
if (imperatorProcess.ExitCode != 0) {
Logger.Debug("Imperator standard output: " + imperatorProcess.StandardOutput.ReadToEnd());
Logger.Debug("Imperator standard error: " + imperatorProcess.StandardError.ReadToEnd());
}
try {
Expand Down

0 comments on commit 98086b9

Please sign in to comment.