This is an automated email from the ASF dual-hosted git repository.
rkk pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ingester.git
The following commit(s) were added to refs/heads/dev by this push:
new dd5c125 Reduce collection manager verbosity (#83)
dd5c125 is described below
commit dd5c12590ae788c5030eaf42fef7861cfcae3219
Author: Riley Kuttruff <[email protected]>
AuthorDate: Thu Sep 7 13:48:30 2023 -0700
Reduce collection manager verbosity (#83)
---
collection_manager/collection_manager/main.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/collection_manager/collection_manager/main.py
b/collection_manager/collection_manager/main.py
index fd7792a..8eead68 100644
--- a/collection_manager/collection_manager/main.py
+++ b/collection_manager/collection_manager/main.py
@@ -24,7 +24,7 @@ from collection_manager.services.history_manager import (
FileIngestionHistoryBuilder, SolrIngestionHistoryBuilder,
md5sum_from_filepath)
-logging.basicConfig(level=logging.DEBUG, format="%(asctime)s [%(levelname)s]
[%(name)s::%(lineno)d] %(message)s")
+logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s]
[%(name)s::%(lineno)d] %(message)s")
logging.getLogger("pika").setLevel(logging.WARNING)
logger = logging.getLogger(__name__)