Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Oct 6, 2024
1 parent 87f632e commit 49984b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hictk/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ static void setup_logger_console() {
spdlog::set_default_logger(main_logger);
}

static void setup_logger_console([[maybe_unused]] int verbosity_lvl, bool print_version) {
static void setup_logger_console(int verbosity_lvl, bool print_version) {
for (auto& sink : spdlog::default_logger()->sinks()) {
sink->set_level(spdlog::level::debug);
sink->set_level(spdlog::level::level_enum(verbosity_lvl));
}

if (print_version) {
Expand Down

0 comments on commit 49984b6

Please sign in to comment.