Skip to content

Commit

Permalink
Fix missing space in log INFO message
Browse files Browse the repository at this point in the history
  • Loading branch information
bryant1410 authored Aug 13, 2024
1 parent 0aa443c commit 558758e
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 558758e

Please sign in to comment.