summaryrefslogtreecommitdiff
path: root/lib/command_parse.y
diff options
context:
space:
mode:
authorPatrick Ruddy <pat@voltanet.io>2020-11-17 16:35:48 +0000
committerGitHub <noreply@github.com>2020-11-17 16:35:48 +0000
commitd50f52b9da9834cec2ad96c3b616bfe2bc502cae (patch)
tree420d0433b1c85f2d2df17be3ee5a5b4e827e34c8 /lib/command_parse.y
parenta08ccc5e3136efbfa9136809e215d821a9b2b5d8 (diff)
parentc8a400f374e3cfe6a94646be031f7fa64ba1fe4f (diff)
Merge pull request #7511 from donaldsharp/vtysh_warn
Vtysh excessive/too little doc string re-instatement
Diffstat (limited to 'lib/command_parse.y')
-rw-r--r--lib/command_parse.y10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/command_parse.y b/lib/command_parse.y
index 5dc19d2c9b..ba5225b702 100644
--- a/lib/command_parse.y
+++ b/lib/command_parse.y
@@ -492,11 +492,11 @@ terminate_graph (CMD_YYLTYPE *locp, struct parser_ctx *ctx,
graph_new_node (ctx->graph, (void *)element, NULL);
if (ctx->docstr && strlen (ctx->docstr) > 1) {
- zlog_debug ("Excessive docstring while parsing '%s'", ctx->el->string);
- zlog_debug ("----------");
+ zlog_err ("Excessive docstring while parsing '%s'", ctx->el->string);
+ zlog_err ("----------");
while (ctx->docstr && ctx->docstr[1] != '\0')
- zlog_debug ("%s", strsep(&ctx->docstr, "\n"));
- zlog_debug ("----------\n");
+ zlog_err ("%s", strsep(&ctx->docstr, "\n"));
+ zlog_err ("----------\n");
}
graph_add_edge (finalnode, end_token_node);
@@ -509,7 +509,7 @@ doc_next (struct parser_ctx *ctx)
const char *piece = ctx->docstr ? strsep (&ctx->docstr, "\n") : "";
if (*piece == 0x03)
{
- zlog_debug ("Ran out of docstring while parsing '%s'", ctx->el->string);
+ zlog_err ("Ran out of docstring while parsing '%s'", ctx->el->string);
piece = "";
}