Revision: f1f4097a995f
Branch:   default
Author:   Mika Hänninen <mika.hanni...@gmail.com>
Date:     Mon Jun 10 23:17:21 2013
Log:      process lib: debug log configuration
http://code.google.com/p/robotframework/source/detail?r=f1f4097a995f

Modified:
 /src/robot/libraries/Process.py

=======================================
--- /src/robot/libraries/Process.py     Mon Jun 10 13:42:20 2013
+++ /src/robot/libraries/Process.py     Mon Jun 10 23:17:21 2013
@@ -296,6 +296,7 @@
         config = ProcessConfig(**configuration)
         executable_command = self._cmd(arguments, command, config.shell)
         logger.info('Starting process:\n%s' % executable_command)
+        logger.debug('Process configuration:\n%s' % config)
         process = subprocess.Popen(executable_command,
                                    stdout=config.stdout_stream,
                                    stderr=config.stderr_stream,
@@ -553,9 +554,8 @@
                        for key in env)
         return env

-    # TODO: Is this needed?
     def __str__(self):
-        return encode_to_system("""
+        return encode_to_system("""\
 cwd = %s
 stdout_stream = %s
 stderr_stream = %s

--

--- You received this message because you are subscribed to the Google Groups "robotframework-commit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to robotframework-commit+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to