chore(userspace/falco): make log message termination consistent

Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
This commit is contained in:
Jason Dellaluce
2022-10-06 16:50:54 +00:00
committed by poiana
parent e85a8c914f
commit 3c02b40a21
5 changed files with 11 additions and 11 deletions

View File

@@ -448,7 +448,7 @@ void falco_engine::read_file(const std::string& filename, std::string& contents)
is.open(filename);
if (!is.is_open())
{
throw falco_exception("Could not open " + filename + " for reading.");
throw falco_exception("Could not open " + filename + " for reading");
}
contents.assign(istreambuf_iterator<char>(is),