diff --git a/modules/console.cc b/modules/console.cc index fbd6816e9..aaf399c86 100644 --- a/modules/console.cc +++ b/modules/console.cc @@ -388,6 +388,21 @@ console_cmd__debug(opt &out, const string_view &line) } } +// +// info +// + +bool +console_cmd__info(opt &out, const string_view &line) +{ + info::dump(); + + out << "Daemon information was written to the log." + << std::endl; + + return true; +} + // // conf //