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()); }