From 7308c9a2bc9cf3616ef1e20d09be31b8c65f02fd Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rados=C5=82aw=20Zarzy=C5=84ski?= Date: Wed, 25 May 2022 10:36:42 +0200 Subject: [PATCH] crimson/osd: reindent the trace-related fragment of main() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The issue is we're mixing tabs and spaces which affects readability when the code is read on github during a review (like recently with the PR #46296). Signed-off-by: Radosław Zarzyński --- src/crimson/osd/main.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/crimson/osd/main.cc b/src/crimson/osd/main.cc index 9076a58f3097a..84ce1a1f94047 100644 --- a/src/crimson/osd/main.cc +++ b/src/crimson/osd/main.cc @@ -222,11 +222,11 @@ int main(int argc, const char* argv[]) seastar::log_level::debug ); } - if (config.count("trace")) { - seastar::global_logger_registry().set_all_loggers_level( + if (config.count("trace")) { + seastar::global_logger_registry().set_all_loggers_level( seastar::log_level::trace ); - } + } sharded_conf().start(init_params.name, cluster_name).get(); auto stop_conf = seastar::defer([] { sharded_conf().stop().get(); -- 2.39.5