We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b9099 commit b9e01a0Copy full SHA for b9e01a0
2 files changed
codeclash/viewer/app.py
@@ -57,7 +57,7 @@ def parse_game_metadata(self) -> GameMetadata:
57
results = json.loads(results_file.read_text())
58
59
# Parse main.log if it exists
60
- main_log_file = self.log_dir / "main.log"
+ main_log_file = self.log_dir / "game.log"
61
main_log = (
62
main_log_file.read_text() if main_log_file.exists() else "No main log found"
63
)
codeclash/viewer/templates/index.html
@@ -46,7 +46,7 @@ <h2>📊 Game Results</h2>
46
47
<!-- Main Log Foldout -->
48
<details class="foldout">
49
- <summary>📝 Main Log</summary>
+ <summary>📝 Game Log</summary>
50
<div class="log-content">
51
<pre><code>{{ metadata.main_log }}</code></pre>
52
</div>
0 commit comments