File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -193,9 +193,9 @@ function FlightLogIndex(logData) {
193
193
// Did we not find any events in this log?
194
194
if ( intraIndex . minTime === false ) {
195
195
if ( sawEndMarker ) {
196
- intraIndex . error = "Logging was paused, no data recorded " ;
196
+ intraIndex . error = "Logging paused, no data" ;
197
197
} else {
198
- intraIndex . error = "Log is truncated, contains no data" ;
198
+ intraIndex . error = "Log truncated, no data" ;
199
199
}
200
200
}
201
201
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ function BlackboxLogViewer() {
305
305
error = flightLog . getLogError ( index ) ;
306
306
307
307
if ( error ) {
308
- logLabel = "Error: " + error ;
308
+ logLabel = error ;
309
309
} else {
310
310
logLabel = formatTime ( flightLog . getMinTime ( index ) / 1000 , false )
311
311
+ " - " + formatTime ( flightLog . getMaxTime ( index ) / 1000 , false )
You can’t perform that action at this time.
0 commit comments