adjusting fatal warning

This commit is contained in:
Chris Punches
2021-04-04 23:24:49 -04:00
parent 865c81b36a
commit 3de2dd7039
4 changed files with 1 additions and 145 deletions

View File

@@ -92,7 +92,7 @@ void JSON_Loader::load_json_file( std::string filename )
// first, check if the file exists
if (! exists( filename ) )
{
this->slog.log( E_DEBUG, "File '" + filename + "' does not exist." );
this->slog.log( E_FATAL, "File '" + filename + "' does not exist." );
throw JSON_Loader_FileNotFound();
}