changed invalid utf8 log level to info
authorEgon Valdmees <egon.valdmees@skype.net>
Mon, 1 Aug 2011 12:12:53 +0000 (15:12 +0300)
committerEgon Valdmees <egon.valdmees@skype.net>
Sun, 7 Aug 2011 18:56:05 +0000 (18:56 +0000)
python/londiste/handlers/dispatch.py

index 19fea5482cec527793b6c955d9e914334c1383c6..c5c1fd73998b2ead782c979268ae08e02e159327 100644 (file)
@@ -591,7 +591,7 @@ class EncodingValidator:
     def show_error(self, col, val, pfx, unew):
         if pfx:
             col = pfx + '.' + col
-        self.log.warning('Invalid UTF8 in column <%s>', col)
+        self.log.info('Fixed invalid UTF8 in column <%s>', col)
         self.log.debug('<%s>: old=%r new=%r', col, val, unew)
 
     def validate_copy(self, data, columns, pfx=""):