From 72f7aaf9e46d2d74327fa20822187dcde2e9650c Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 6 Sep 2024 12:15:17 -0500 Subject: [PATCH] move events to debug --- repertory/librepertory/include/events/events.hpp | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/repertory/librepertory/include/events/events.hpp b/repertory/librepertory/include/events/events.hpp index 1a7b6b35..a52d4a8b 100644 --- a/repertory/librepertory/include/events/events.hpp +++ b/repertory/librepertory/include/events/events.hpp @@ -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 );