Author: janne.t.harkonen
Date: Tue Mar 24 08:01:46 2009
New Revision: 1503
Modified:
trunk/src/robot/output/output.py
Log:
Removed unnecessary statements
Modified: trunk/src/robot/output/output.py
==============================================================================
--- trunk/src/robot/output/output.py (original)
+++ trunk/src/robot/output/output.py Tue Mar 24 08:01:46 2009
@@ -82,8 +82,6 @@
def end_suite(self, suite):
outpath = self.logger.end_suite(suite)
if outpath is not None:
- SYSLOG.info('Output: %s' % outpath)
- self.listeners.output_file('Output', outpath)
orig_outpath = self._settings['Output']
suite.namespace.variables.set_global('${OUTPUT_FILE}',
orig_outpath)
self._create_split_log(outpath, suite)
@@ -98,8 +96,6 @@
logpath = self._namegen.get_prev()
output = robot.serializing.SplitSubTestOutput(outpath)
output.serialize_log(logpath)
- SYSLOG.info('Log: %s' % logpath)
- self.listeners.output_file('Log', logpath)
suite.namespace.variables.set_global('${LOG_FILE}',
self._namegen.get_base())
def start_test(self, test):