summaryrefslogtreecommitdiff
path: root/lib/vty.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@diac24.net>2021-03-12 02:57:47 +0100
committerDavid Lamparter <equinox@diac24.net>2021-03-14 22:56:07 +0100
commitad6f7449ef178417384e2da979ec094372de6dba (patch)
treecb2e0214cb255f1cb579a2a3791f27b646827d50 /lib/vty.c
parent5d27875b7d2f54766b951b5d555851320ca8708f (diff)
*: remove remaining severity prefixes
Having a "warning:" prefix on a debug message is particularly dumb... Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'lib/vty.c')
-rw-r--r--lib/vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vty.c b/lib/vty.c
index acef32b2ab..4cefb5e80c 100644
--- a/lib/vty.c
+++ b/lib/vty.c
@@ -2321,7 +2321,7 @@ static void vty_read_file(struct nb_config *config, FILE *confp)
nl = strchr(ve->error_buf, '\n');
if (nl)
*nl = '\0';
- flog_err(EC_LIB_VTY, "ERROR: %s on config line %u: %s",
+ flog_err(EC_LIB_VTY, "%s on config line %u: %s",
message, ve->line_num, ve->error_buf);
}
}