move events to debug

This commit is contained in:
Scott E. Graves 2024-09-06 12:15:17 -05:00
parent d12b5f7b05
commit 72f7aaf9e4

View File

@ -28,7 +28,7 @@
namespace repertory {
// clang-format off
E_SIMPLE2(curl_error, info, true,
E_SIMPLE2(curl_error, error, true,
std::string, url, url, E_STRING,
CURLcode, res, res, E_FROM_CURL_CODE
);
@ -109,7 +109,7 @@ E_SIMPLE3(file_read_bytes_failed, error, true,
std::size_t, retry, retry, E_FROM_SIZE_T
);
E_SIMPLE1(file_removed, info, true,
E_SIMPLE1(file_removed, debug, true,
std::string, api_path, ap, E_STRING
);
@ -134,7 +134,7 @@ E_SIMPLE2(file_get_size_failed, error, true,
std::string, error, err, E_STRING
);
E_SIMPLE3(filesystem_item_added, info, true,
E_SIMPLE3(filesystem_item_added, debug, true,
std::string, api_path, ap, E_STRING,
std::string, parent, parent, E_STRING,
bool, directory, dir, E_FROM_BOOL
@ -167,11 +167,6 @@ E_SIMPLE2(filesystem_item_evicted, info, true,
std::string, source, src, E_STRING
);
E_SIMPLE2(filesystem_item_get_failed, error, true,
std::string, api_path, ap, E_STRING,
std::string, error, err, E_STRING
);
E_SIMPLE3(filesystem_item_opened, trace, true,
std::string, api_path, ap, E_STRING,
std::string, source, src, E_STRING,
@ -220,10 +215,6 @@ E_SIMPLE2(file_upload_started, info, true,
std::string, source, src, E_STRING
);
E_SIMPLE(item_scan_begin, info, true);
E_SIMPLE(item_scan_end, info, true);
E_SIMPLE1(orphaned_file_deleted, warn, true,
std::string, source, src, E_STRING
);