Skip to content

Commit b9e01a0

Browse files
committed
Fix(viewer): main log file name
1 parent 19b9099 commit b9e01a0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

codeclash/viewer/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def parse_game_metadata(self) -> GameMetadata:
5757
results = json.loads(results_file.read_text())
5858

5959
# Parse main.log if it exists
60-
main_log_file = self.log_dir / "main.log"
60+
main_log_file = self.log_dir / "game.log"
6161
main_log = (
6262
main_log_file.read_text() if main_log_file.exists() else "No main log found"
6363
)

codeclash/viewer/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ <h2>📊 Game Results</h2>
4646

4747
<!-- Main Log Foldout -->
4848
<details class="foldout">
49-
<summary>📝 Main Log</summary>
49+
<summary>📝 Game Log</summary>
5050
<div class="log-content">
5151
<pre><code>{{ metadata.main_log }}</code></pre>
5252
</div>

0 commit comments

Comments
 (0)