You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sdap.apache.org by rk...@apache.org on 2023/08/02 19:52:54 UTC

[incubator-sdap-ingester] branch RKuttruff-patch-1 created (now 00e75ed)

This is an automated email from the ASF dual-hosted git repository.

rkk pushed a change to branch RKuttruff-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ingester.git


      at 00e75ed  Reduce collection manager verbosity

This branch includes the following new commits:

     new 00e75ed  Reduce collection manager verbosity

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-sdap-ingester] 01/01: Reduce collection manager verbosity

Posted by rk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rkk pushed a commit to branch RKuttruff-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-sdap-ingester.git

commit 00e75ed2a912851009c22bb367313f5663780415
Author: Riley Kuttruff <72...@users.noreply.github.com>
AuthorDate: Wed Aug 2 12:52:50 2023 -0700

    Reduce collection manager verbosity
---
 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__)