Skip to content

Commit 44869a9

Browse files
Merge pull request #156 from mastodon-sc/fix-logger
Fix logger
2 parents 97ae51f + feaf4d3 commit 44869a9

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

.github/workflows/sonarcloud.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424
name: SonarCloud analysis
2525

2626
on:
27-
push:
28-
branches: [ "master" ]
29-
pull_request:
30-
branches: [ "master" ]
27+
# Automatic triggers disabled: SONAR_TOKEN is currently validly not configured for this repo.
28+
# Re-enable the push/pull_request triggers below once the token is available.
29+
# push:
30+
# branches: [ "master" ]
31+
# pull_request:
32+
# branches: [ "master" ]
3133
workflow_dispatch:
3234

3335
permissions:

src/main/java/org/mastodon/tracking/mamut/trackmate/wizard/descriptors/cellpose/CellposeDetectorDescriptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ protected void getSettingsAndUpdateConfigPanel()
171171
}
172172
catch (IllegalArgumentException e)
173173
{
174-
logger.debug( "Could not set GPU ID to "+gpuIdValue+". Defaulting to no GPU. Error message: " + e.getMessage() );
174+
slf4Logger.debug( "Could not set GPU ID to "+gpuIdValue+". Defaulting to no GPU. Error message: " + e.getMessage() );
175175
}
176176

177177
final Object gpuMemFractionObject =

0 commit comments

Comments
 (0)