Fix verbosity flag and default logging level
Some checks failed
Build and test / check (push) Failing after 40s
Build and test / build (push) Successful in 3m9s
Build and test / test (push) Successful in 3m24s
Build and test / check-license (push) Successful in 5m48s
Build and test / docs (push) Successful in 5m18s

This commit is contained in:
2025-12-03 11:39:39 +09:00
parent ed71524e85
commit 7df04ec413
4 changed files with 11 additions and 13 deletions

View File

@@ -16,16 +16,14 @@ in
};
logLevel = lib.mkOption {
type = lib.types.enum [ "quiet" "error" "warn" "info" "debug" "trace" ];
type = lib.types.enum [ "quiet" "info" "debug" "trace" ];
default = "info";
description = "Log level for muscl";
apply = level: {
"quiet" = "-q";
"error" = "";
"warn" = "-v";
"info" = "-vv";
"debug" = "-vvv";
"trace" = "-vvvv";
"info" = "";
"debug" = "-v";
"trace" = "-vv";
}.${level};
};

View File

@@ -1,7 +1,7 @@
use std::{fs, path::PathBuf, sync::Arc, time::Duration};
use anyhow::{Context, anyhow};
use clap_verbosity_flag::Verbosity;
use clap_verbosity_flag::{InfoLevel, Verbosity};
use nix::libc::{EXIT_SUCCESS, exit};
use sqlx::mysql::MySqlPoolOptions;
use std::os::unix::net::UnixStream as StdUnixStream;
@@ -77,7 +77,7 @@ fn will_connect_to_external_server(
pub fn bootstrap_server_connection_and_drop_privileges(
server_socket_path: Option<PathBuf>,
config: Option<PathBuf>,
verbose: Verbosity,
verbose: Verbosity<InfoLevel>,
) -> anyhow::Result<StdUnixStream> {
if will_connect_to_external_server(server_socket_path.as_ref(), config.as_ref())? {
assert!(

View File

@@ -4,7 +4,7 @@ extern crate prettytable;
use anyhow::Context;
use clap::{CommandFactory, Parser, ValueEnum};
use clap_complete::{CompleteEnv, Shell, generate};
use clap_verbosity_flag::Verbosity;
use clap_verbosity_flag::{InfoLevel, Verbosity};
use std::path::PathBuf;
@@ -73,7 +73,7 @@ struct Args {
config: Option<PathBuf>,
#[command(flatten)]
verbose: Verbosity,
verbose: Verbosity<InfoLevel>
}
#[derive(Parser, Debug, Clone)]
@@ -252,7 +252,7 @@ const MIN_TOKIO_WORKER_THREADS: usize = 4;
/// Start a long-lived server using Tokio.
fn tokio_start_server(
config_path: Option<PathBuf>,
verbosity: Verbosity,
verbosity: Verbosity<InfoLevel>,
args: ServerArgs,
) -> anyhow::Result<()> {
let worker_thread_count = std::cmp::max(num_cpus::get(), MIN_TOKIO_WORKER_THREADS);

View File

@@ -2,7 +2,7 @@ use std::path::PathBuf;
use anyhow::Context;
use clap::Parser;
use clap_verbosity_flag::Verbosity;
use clap_verbosity_flag::{InfoLevel, Verbosity};
use tracing_subscriber::prelude::*;
use crate::{
@@ -56,7 +56,7 @@ pub fn trace_server_prelude() {
pub async fn handle_command(
config_path: Option<PathBuf>,
verbosity: Verbosity,
verbosity: Verbosity<InfoLevel>,
args: ServerArgs,
) -> anyhow::Result<()> {
let mut auto_detected_systemd_mode = false;