From 21fd9fe227ce0b0d4595bcf6435ac1322b83666f Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 24 Oct 2024 20:25:06 -0500 Subject: [PATCH] fixes --- repertory/repertory/include/cli/mount.hpp | 2 +- repertory/repertory_test/include/fixtures/fuse_fixture.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/repertory/repertory/include/cli/mount.hpp b/repertory/repertory/include/cli/mount.hpp index f2a24235..2adac03f 100644 --- a/repertory/repertory/include/cli/mount.hpp +++ b/repertory/repertory/include/cli/mount.hpp @@ -120,7 +120,7 @@ mount(std::vector args, std::string data_directory, std::cout << "Initializing " << app_config::get_provider_display_name(prov) << (unique_id.empty() ? "" - : (prov == provider_type::s3) + : (prov == provider_type::s3 || prov == provider_type::sia) ? " [" + unique_id + ']' : " [" + remote_host + ':' + std::to_string(remote_port) + ']') diff --git a/repertory/repertory_test/include/fixtures/fuse_fixture.hpp b/repertory/repertory_test/include/fixtures/fuse_fixture.hpp index 1d80785a..b407b9bd 100644 --- a/repertory/repertory_test/include/fixtures/fuse_fixture.hpp +++ b/repertory/repertory_test/include/fixtures/fuse_fixture.hpp @@ -107,7 +107,7 @@ protected: utils::path::combine(test::get_test_config_dir(), {"sia"}), }; config->set_enable_drive_events(true); - config->set_event_level(event_level::debug); + config->set_event_level(event_level::trace); config->set_host_config(src_cfg.get_host_config()); }