diff options
Diffstat (limited to 'src/nm-logging.c')
-rw-r--r-- | src/nm-logging.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nm-logging.c b/src/nm-logging.c index 11e05c31f7..7b152dd09e 100644 --- a/src/nm-logging.c +++ b/src/nm-logging.c @@ -264,7 +264,7 @@ match_log_level (const char *level, } g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_LOG_LEVEL, - _("Unknown log level '%s'"), level); + "Unknown log level '%s'", level); return FALSE; } @@ -366,7 +366,7 @@ nm_logging_setup (const char *level, if (!bits) { if (!bad_domains) { g_set_error (error, NM_MANAGER_ERROR, NM_MANAGER_ERROR_UNKNOWN_LOG_DOMAIN, - _("Unknown log domain '%s'"), *iter); + "Unknown log domain '%s'", *iter); return FALSE; } |