소스 검색

Change logging of search params to INFO from DEBUG. This will help aid in verifying automated searches.

Miek Stagl 5 년 전
부모
커밋
fc0988d874
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      index.py

+ 1 - 1
index.py

@@ -123,7 +123,7 @@ class Search:
                     "Unknown type '" + property_type + "'. Property Type must be of type: " + str(self.types))
 
         ## FOR TESTING, PRINT ALL ATTRIBUTES OF SEARCH ##
-        logging.debug(vars(self))
+        logging.info(vars(self))
 
 
 class ImproperSearchError(Exception):