Skip to content

Commit ad17a0e

Browse files
committed
remove defualt streambuff ambiguitiy and changed dummy toolchain defaults to print file output
1 parent cb058fa commit ad17a0e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

configfiles/Dummy/ToolChainConfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ attempt_recover 1 # 1= will attempt to finalise if an execute fails, 0= will no
77

88
###### Logging #####
99
log_interactive 1 # Interactive=cout; 0=false, 1= true
10-
log_local 0 # Local = local file log; 0=false, 1= true
10+
log_local 1 # Local = local file log; 0=false, 1= true
1111
log_local_path ./log # file to store logs to if local is active
1212
log_append_time 0 # append seconds since epoch to filename; 0=false, 1= true
13-
log_split_files 0 # seperate output and error log files (named x.o and x.e); 0=false, 1= true
13+
log_split_files 1 # seperate output and error log files (named x.o and x.e); 0=false, 1= true
1414

1515
##### Tools To Add #####
1616
Tools_File configfiles/Dummy/ToolsConfig # list of tools to run and their config files

src/Logging/Logging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ class Logging: virtual public std::ostream {
8080
public:
8181

8282
TFStreamBuf(){};
83-
TFStreamBuf(bool interactive=true, bool local=false, std::string localpath="./log", bool error=false, std::ostream* filestream=0);
83+
TFStreamBuf(bool interactive, bool local=false, std::string localpath="./log", bool error=false, std::ostream* filestream=0);
8484

8585
virtual ~TFStreamBuf();
8686

0 commit comments

Comments
 (0)