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 8e7ee7c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ jobs:

steps:
- name: "Show: GitHub context"
run: echo '${{ toJSON(github) }}'
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: echo $GITHUB_CONTEXT


- name: "Show: environment variables"
Expand Down
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 8e7ee7c

Please sign in to comment.