implements error log reporting (#464)

* implements error log reporting

* changes api post variables, includes warnings
This commit is contained in:
Keagan McClelland
2021-09-13 11:49:12 -06:00
committed by GitHub
parent dc7461746c
commit 1808c085e8
10 changed files with 175 additions and 15 deletions

View File

@@ -68,7 +68,13 @@ pub fn main_api() -> Result<(), RpcError> {
Ok(())
}
#[command(subcommands(system::logs, system::metrics, shutdown::shutdown, shutdown::restart))]
#[command(subcommands(
system::config,
system::logs,
system::metrics,
shutdown::shutdown,
shutdown::restart
))]
pub fn server() -> Result<(), RpcError> {
Ok(())
}