Skip to content

Commit

Permalink
Fix missing space in log INFO message (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryant1410 authored Aug 15, 2024
1 parent b395da5 commit 345f6cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/terminal/ParseConfigFile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1183,7 +1183,7 @@ static void local_parse_file(const char *targethost, struct Options *options,

ifstream infile(filename);
if (!infile.good()) {
LOG(INFO) << filename << "not found";
LOG(INFO) << filename << " not found";
return;
}

Expand Down

0 comments on commit 345f6cb

Please sign in to comment.