浏览代码

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