Revision: 4538
Author: pekka.klarck
Date: Tue Dec 28 05:54:00 2010
Log: read also user keywords with given log level
http://code.google.com/p/robotframework/source/detail?r=4538

Modified:
 /trunk/src/robot/output/readers.py

=======================================
--- /trunk/src/robot/output/readers.py  Mon Sep 20 14:47:33 2010
+++ /trunk/src/robot/output/readers.py  Tue Dec 28 05:54:00 2010
@@ -143,7 +143,7 @@
         log_filter = IsLogged(log_level or 'TRACE')
         for child in node.children:
             if child.name == 'kw':
-                kw = Keyword(child)
+                kw = Keyword(child, log_level)
                 self.keywords.append(kw)
                 self.children.append(kw)
elif child.name == 'msg' and log_filter(child.get_attr('level', 'INFO')):

Reply via email to