summaryrefslogtreecommitdiffstats
path: root/nest/cli.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>2000-05-30 00:10:18 +0200
committerMartin Mares <mj@ucw.cz>2000-05-30 00:10:18 +0200
commit4761efdb43aa128fa0326963d88debe8fb942c84 (patch)
tree483e33ce446335643fc4f83148a386df87b47e4d /nest/cli.c
parent26eee1c33ac90ccbc5753afac06d34980fade2b8 (diff)
downloadbird-4761efdb43aa128fa0326963d88debe8fb942c84.tar
bird-4761efdb43aa128fa0326963d88debe8fb942c84.zip
Tracing of CLI connections/commands can be now controlled
by `debug commands <level>' in the configuration. Level 0 means no tracing, 1 means connections only, 2 includes all commands.
Diffstat (limited to 'nest/cli.c')
-rw-r--r--nest/cli.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/nest/cli.c b/nest/cli.c
index fb2b679..ec18bc9 100644
--- a/nest/cli.c
+++ b/nest/cli.c
@@ -162,6 +162,8 @@ cli_command(struct cli *c)
struct config f;
int res;
+ if (config->cli_debug > 1)
+ log(L_TRACE "CLI: %s", c->rx_buf);
bzero(&f, sizeof(f));
f.mem = c->parser_pool;
cf_read_hook = cli_cmd_read_hook;