[yt-svn] commit/yt: 2 new changesets

commits-noreply at bitbucket.org commits-noreply at bitbucket.org
Sun May 4 08:00:03 PDT 2014


2 new commits in yt:

https://bitbucket.org/yt_analysis/yt/commits/a18f8e50e2ec/
Changeset:   a18f8e50e2ec
Branch:      yt-3.0
User:        ngoldbaum
Date:        2014-05-03 09:25:00
Summary:     Documenting stdoutStreamLogging.  Giving it a more consistent name.
Affected #:  3 files

diff -r 869468b460381a8820464c5e63c7598303dc0ad1 -r a18f8e50e2eca0310d646c93f39d0b6344f2e1c9 doc/source/reference/configuration.rst
--- a/doc/source/reference/configuration.rst
+++ b/doc/source/reference/configuration.rst
@@ -93,3 +93,5 @@
   uploading AMRSurface objects.
 * ``suppressStreamLogging`` (default: ``'False'``): If true, execution mode will be
   quiet.
+* ``stdoutStreamLogging`` (default: ``'False'``): If three, logging is directed
+  to stdout rather than stderr

diff -r 869468b460381a8820464c5e63c7598303dc0ad1 -r a18f8e50e2eca0310d646c93f39d0b6344f2e1c9 yt/config.py
--- a/yt/config.py
+++ b/yt/config.py
@@ -24,7 +24,7 @@
     logfile = 'False',
     coloredlogs = 'False',
     suppressstreamlogging = 'False',
-    StdoutStreamLogging = 'False',
+    stdoutStreamLogging = 'False',
     loglevel = '20',
     inline = 'False',
     numthreads = '-1',

diff -r 869468b460381a8820464c5e63c7598303dc0ad1 -r a18f8e50e2eca0310d646c93f39d0b6344f2e1c9 yt/utilities/logger.py
--- a/yt/utilities/logger.py
+++ b/yt/utilities/logger.py
@@ -47,7 +47,7 @@
 ufstring = "%(name)-3s: [%(levelname)-9s] %(asctime)s %(message)s"
 cfstring = "%(name)-3s: [%(levelname)-18s] %(asctime)s %(message)s"
 
-if ytcfg.getboolean("yt", "StdoutStreamLogging"):
+if ytcfg.getboolean("yt", "stdoutStreamLogging"):
     stream = sys.stdout
 else:
     stream = sys.stderr


https://bitbucket.org/yt_analysis/yt/commits/e67dfd21e83b/
Changeset:   e67dfd21e83b
Branch:      yt-3.0
User:        MatthewTurk
Date:        2014-05-04 16:59:56
Summary:     Merged in ngoldbaum/yt/yt-3.0 (pull request #869)

Documenting stdoutStreamLogging.  Giving it a more consistent name.
Affected #:  3 files

diff -r 7de110e64df8ee328ab22f5977a907d994b6087c -r e67dfd21e83b7959b711f40609c84f47d618bf21 doc/source/reference/configuration.rst
--- a/doc/source/reference/configuration.rst
+++ b/doc/source/reference/configuration.rst
@@ -93,3 +93,5 @@
   uploading AMRSurface objects.
 * ``suppressStreamLogging`` (default: ``'False'``): If true, execution mode will be
   quiet.
+* ``stdoutStreamLogging`` (default: ``'False'``): If three, logging is directed
+  to stdout rather than stderr

diff -r 7de110e64df8ee328ab22f5977a907d994b6087c -r e67dfd21e83b7959b711f40609c84f47d618bf21 yt/config.py
--- a/yt/config.py
+++ b/yt/config.py
@@ -24,7 +24,7 @@
     logfile = 'False',
     coloredlogs = 'False',
     suppressstreamlogging = 'False',
-    StdoutStreamLogging = 'False',
+    stdoutStreamLogging = 'False',
     loglevel = '20',
     inline = 'False',
     numthreads = '-1',

diff -r 7de110e64df8ee328ab22f5977a907d994b6087c -r e67dfd21e83b7959b711f40609c84f47d618bf21 yt/utilities/logger.py
--- a/yt/utilities/logger.py
+++ b/yt/utilities/logger.py
@@ -47,7 +47,7 @@
 ufstring = "%(name)-3s: [%(levelname)-9s] %(asctime)s %(message)s"
 cfstring = "%(name)-3s: [%(levelname)-18s] %(asctime)s %(message)s"
 
-if ytcfg.getboolean("yt", "StdoutStreamLogging"):
+if ytcfg.getboolean("yt", "stdoutStreamLogging"):
     stream = sys.stdout
 else:
     stream = sys.stderr

Repository URL: https://bitbucket.org/yt_analysis/yt/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the yt-svn mailing list