mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-05-28 03:11:20 +00:00

Use new logger builder to initialize the logging in each component. Signed-off-by: Gabriel Goller <g.goller@proxmox.com>
35 lines
987 B
Rust
35 lines
987 B
Rust
use proxmox_router::{
|
|
cli::{run_cli_command, CliCommandMap, CliEnvironment},
|
|
RpcEnvironment,
|
|
};
|
|
|
|
mod proxmox_backup_debug;
|
|
use proxmox_backup_debug::*;
|
|
|
|
fn main() {
|
|
proxmox_log::Logger::from_env("PBS_LOG", proxmox_log::LevelFilter::INFO)
|
|
.stderr()
|
|
.init()
|
|
.expect("failed to initiate logger");
|
|
|
|
let cmd_def = CliCommandMap::new()
|
|
.insert("inspect", inspect::inspect_commands())
|
|
.insert("recover", recover::recover_commands())
|
|
.insert("api", api::api_commands())
|
|
.insert("diff", diff::diff_commands());
|
|
|
|
let uid = nix::unistd::Uid::current();
|
|
let username = match nix::unistd::User::from_uid(uid) {
|
|
Ok(Some(user)) => user.name,
|
|
_ => "root@pam".to_string(),
|
|
};
|
|
let mut rpcenv = CliEnvironment::new();
|
|
rpcenv.set_auth_id(Some(format!("{}@pam", username)));
|
|
|
|
run_cli_command(
|
|
cmd_def,
|
|
rpcenv,
|
|
Some(|future| proxmox_async::runtime::main(future)),
|
|
);
|
|
}
|