diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2009-07-28 15:06:36 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2009-07-28 15:06:36 (GMT) |
commit | f750dafa081af1f5ab96f41262e9bb42d7528911 (patch) | |
tree | a99f7fa36c2a535c9ed041403762138a62e3c59e | |
parent | e7a331e01feabce71949f1ec905f6796e045d759 (diff) | |
download | fusearchive-f750dafa081af1f5ab96f41262e9bb42d7528911.zip fusearchive-f750dafa081af1f5ab96f41262e9bb42d7528911.tar.gz fusearchive-f750dafa081af1f5ab96f41262e9bb42d7528911.tar.bz2 |
Changed to log to stderr
-rwxr-xr-x | fusearchive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fusearchive.py b/fusearchive.py index f4e97d8..ccfb384 100755 --- a/fusearchive.py +++ b/fusearchive.py @@ -25,7 +25,7 @@ fuse.feature_assert('stateful_files', 'has_init') logging.basicConfig( level = logging.DEBUG, format = '%(asctime)s %(levelname)s %(filename)s:%(lineno)d %(module)s:%(funcName)s() %(message)s', - filename = sys.argv[ 0 ] + ".log", + stream = sys.stderr, filemode = 'w' ) magic_profiling = False |