- Use `GoggaLogger`'s `error()` on errors and `warn()` on warnings

This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-11 15:58:15 +02:00
parent 0e8a9c8313
commit d42bf3c6c5
1 changed files with 5 additions and 5 deletions

View File

@ -249,7 +249,7 @@ void main(string[] args)
/* If we have more than two arguments then it is an error */
else if(args.length > 2)
{
logger.info("Only one argument, the path to the configuration file, is allowed");
logger.error("Only one argument, the path to the configuration file, is allowed");
exit(-1);
}
/* If there are no arguments, assume default config.json file */
@ -304,19 +304,19 @@ void main(string[] args)
}
catch(JSONException e)
{
logger.info("Not configuring NTFY as config is partially broken:\n\n"~e.msg);
logger.warn("Not configuring NTFY as config is partially broken:\n\n"~e.msg);
}
logger.info("Your configguration is: \n"~config.toPrettyString());
logger.info("Your configuration is: \n"~config.toPrettyString());
}
catch(JSONException e)
{
logger.info("There was an error whilst parsing the config file:\n\n"~e.msg);
logger.error("There was an error whilst parsing the config file:\n\n"~e.msg);
exit(-1);
}
catch(ErrnoException e)
{
logger.info("There was a problem opening the configuration file: "~e.msg);
logger.error("There was a problem opening the configuration file: "~e.msg);
exit(-1);
}