소스 검색

cosmetic: remove too-verbose debug log

Damien ACCORSI 10 년 전
부모
커밋
61c1f3b4d1
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      tracim/tracim/lib/base.py

+ 2 - 1
tracim/tracim/lib/base.py 파일 보기

@@ -60,7 +60,8 @@ class BaseController(TGController):
60 60
             controller = step[1]
61 61
             url = '/'.join([url.rstrip('/'), path.rstrip('/')]) # we always remove trailing slash
62 62
 
63
-            logger.debug(self, ' Looking for item related to controller {} [type: {}]'.format(path, controller.__class__))
63
+            # LOW-LEVEL DEBUG related log
64
+            # logger.debug(self, ' Looking for item related to controller {} [type: {}]'.format(path, controller.__class__))
64 65
 
65 66
             if not skip_id:
66 67
                 if id and self==controller: