diff options
| author | Renato Westphal <renato@opensourcerouting.org> | 2019-05-29 23:55:50 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-29 23:55:50 -0300 |
| commit | 4eb4afa3b6b332fa6cb23633a0cbf1551f1f9f87 (patch) | |
| tree | 60c1b7b96548de34233178240c903a1602f06f66 /lib/libfrr.c | |
| parent | 0ad79902fc5f4219feef1fec2ee7b5dfd3f34f98 (diff) | |
| parent | ae0994f6eb301491aafb8fef8f1d8c6a9033fae9 (diff) | |
Merge pull request #4393 from donaldsharp/debug_all
Debug all
Diffstat (limited to 'lib/libfrr.c')
| -rw-r--r-- | lib/libfrr.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libfrr.c b/lib/libfrr.c index cd5a164c53..15de96feee 100644 --- a/lib/libfrr.c +++ b/lib/libfrr.c @@ -39,6 +39,7 @@ #include "db.h" #include "northbound_cli.h" #include "northbound_db.h" +#include "debug.h" DEFINE_HOOK(frr_late_init, (struct thread_master * tm), (tm)) DEFINE_KOOH(frr_early_fini, (), ()) @@ -654,6 +655,9 @@ struct thread_master *frr_init(void) lib_error_init(); yang_init(); + + debug_init_cli(); + nb_init(master, di->yang_modules, di->n_yang_modules); if (nb_db_init() != NB_OK) flog_warn(EC_LIB_NB_DATABASE, |
