File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ Function SmokeTestBingoService
151
151
# Check for absence of logging error file exceptionDump.txt (occurs in binaries install dir, not logs subdirectory)
152
152
CheckFileAbsentOrDie(" exceptionDump.txt" )
153
153
154
- Write-Output ( ' Log file data loaded as :' + $engineLog )
154
+ echo ( ' engine Log file data loaded as :' + $engineLog )
155
155
156
156
# Check the _engine.log to ensure a game has been scheduled, by checking for presence of the following log messages:
157
157
# 31-01 09:05:06 Scheduler Info SCHED,ID:076741 EVENT,ID:088541 Event created
@@ -177,6 +177,8 @@ Function CheckFileAbsentOrDie($fileName)
177
177
echo ($fileName + " does not exists" )
178
178
}
179
179
else {
180
+ $data = ([string ](Get-Content $fileName ))
181
+ echo ($fileName + ' data is ' + $data )
180
182
throw ($fileName + " exists! Test failure" );
181
183
}
182
184
}
You can’t perform that action at this time.
0 commit comments