Revision: 3864d1425392
Author:   Pekka Klärck
Date:     Fri Sep 23 03:50:38 2011
Log: There doesn't seem to be need to override warn method anymore, or at least I couldn't find any usages in the source. Let's see what CI says about that.
http://code.google.com/p/robotframework/source/detail?r=3864d1425392

Modified:
 /src/robot/output/logger.py

=======================================
--- /src/robot/output/logger.py Fri Sep 23 01:48:29 2011
+++ /src/robot/output/logger.py Fri Sep 23 03:50:38 2011
@@ -118,10 +118,6 @@
     def disable_library_import_logging(self):
         self.log_message = self._prev_log_message

-    def warn(self, msg, log=False):  # TODO: Do we still need log=False?
-        method = self.log_message if log else self.message
-        method(Message(msg, 'WARN'))
-
     def output_file(self, name, path):
         """Finished output, report, log, debug, or xunit file"""
         for logger in self._loggers.all_loggers():

Reply via email to