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) {
193193 // Did we not find any events in this log?
194194 if ( intraIndex . minTime === false ) {
195195 if ( sawEndMarker ) {
196- intraIndex . error = "Logging was paused, no data recorded " ;
196+ intraIndex . error = "Logging paused, no data" ;
197197 } else {
198- intraIndex . error = "Log is truncated, contains no data" ;
198+ intraIndex . error = "Log truncated, no data" ;
199199 }
200200 }
201201
Original file line number Diff line number Diff line change @@ -305,7 +305,7 @@ function BlackboxLogViewer() {
305305 error = flightLog . getLogError ( index ) ;
306306
307307 if ( error ) {
308- logLabel = "Error: " + error ;
308+ logLabel = error ;
309309 } else {
310310 logLabel = formatTime ( flightLog . getMinTime ( index ) / 1000 , false )
311311 + " - " + formatTime ( flightLog . getMaxTime ( index ) / 1000 , false )
You can’t perform that action at this time.
0 commit comments