@@ -51,7 +51,7 @@ void DiskWebServer::Metadata::initialize(const String & uri_with_path, const Str
51
51
assertChar (' \t ' , metadata_buf);
52
52
readIntText (file_size, metadata_buf);
53
53
assertChar (' \n ' , metadata_buf);
54
- LOG_DEBUG (&Poco::Logger::get (" DiskWeb" ), " Read file: {}, size: {}" , remote_file_name, file_size);
54
+ LOG_TRACE (&Poco::Logger::get (" DiskWeb" ), " Read file: {}, size: {}" , remote_file_name, file_size);
55
55
56
56
/*
57
57
* URI/ {uri}/{uuid}/all_x_x_x/{file}
@@ -227,7 +227,7 @@ bool DiskWebServer::findFileInMetadata(const String & path, File & file_info) co
227
227
228
228
bool DiskWebServer::exists (const String & path) const
229
229
{
230
- LOG_DEBUG (log , " Checking existence of file: {}" , path);
230
+ LOG_TRACE (log , " Checking existence of file: {}" , path);
231
231
232
232
File file;
233
233
return findFileInMetadata (path, file);
@@ -243,7 +243,7 @@ std::unique_ptr<ReadBufferFromFileBase> DiskWebServer::readFile(const String & p
243
243
244
244
auto file_name = escapeForFileName (fs::path (path).stem ()) + fs::path (path).extension ().string ();
245
245
auto remote_path = fs::path (path).parent_path () / file_name;
246
- LOG_DEBUG (log , " Read from file by path: {}" , remote_path.string ());
246
+ LOG_TRACE (log , " Read from file by path: {}" , remote_path.string ());
247
247
248
248
RemoteMetadata meta (uri, remote_path);
249
249
meta.remote_fs_objects .emplace_back (std::make_pair (getFileName (remote_path), file.size ));
@@ -255,7 +255,7 @@ std::unique_ptr<ReadBufferFromFileBase> DiskWebServer::readFile(const String & p
255
255
256
256
DiskDirectoryIteratorPtr DiskWebServer::iterateDirectory (const String & path)
257
257
{
258
- LOG_DEBUG (log , " Iterate directory: {}" , path);
258
+ LOG_TRACE (log , " Iterate directory: {}" , path);
259
259
String uuid;
260
260
261
261
if (RE2::FullMatch (path, " .*/store/" ))
0 commit comments