Skip to content

Commit

Permalink
fix: don't log BadLocationException as error during async marker updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed May 15, 2024
1 parent 693b2c1 commit d5e0f9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ private static void updateTextMarkers(final ITMDocumentModel docModel, final int
res.createMarker(markerTypeId, attrs);
}
} catch (final BadLocationException ex) {
TMUIPlugin.logError(ex);
TMUIPlugin.logTrace(ex);
}
}

Expand Down

0 comments on commit d5e0f9f

Please sign in to comment.