Reword log level error message to be more like the Postgres one

This commit is contained in:
Ian Barwick
2015-10-07 10:54:12 +09:00
parent 06b9e0a8ec
commit 3bc0b80a71

2
log.c
View File

@@ -98,7 +98,7 @@ logger_init(t_configuration_options * opts, const char *ident, const char *level
if (l > 0)
log_level = l;
else
stderr_log_warning(_("Cannot detect log level %s (use any of DEBUG, INFO, NOTICE, WARNING, ERR, ALERT, CRIT or EMERG)\n"), level);
stderr_log_warning(_("Invalid log level \"%s\" (available values: DEBUG, INFO, NOTICE, WARNING, ERR, ALERT, CRIT or EMERG)\n"), level);
}
if (facility && *facility)