Skip to content

Commit

Permalink
fix(Log): Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
HarukiMoriarty committed Apr 10, 2024
1 parent b2050e5 commit 9bc6ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calmapf/src/log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Log::Log(Parser* parser)
}

// Open visual file
visual_output_handler.open(parser->output_step_file, std::ios::app);
visual_output_handler.open(parser->output_visual_file, std::ios::app);
if (!visual_output_handler.is_open()) {
log_console->error("Failed to open file: {}", parser->output_visual_file);
exit(1);
Expand Down

0 comments on commit 9bc6ed0

Please sign in to comment.