Skip to content

Commit

Permalink
Write failed tagger requests to debug console
Browse files Browse the repository at this point in the history
Fixes #5
  • Loading branch information
phw committed Dec 1, 2023
1 parent 7a28137 commit 94f8080
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mb-magic-tagger-button.user.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// ==UserScript==
// @name MusicBrainz Magic Tagger Button
// @description Automatically enable the green tagger button on MusicBrainz.org depending on whether Picard is running.
// @version 0.7.8
// @version 0.7.9
// @author Philipp Wolfer
// @namespace https://uploadedlobster.com
// @license MIT
Expand Down Expand Up @@ -137,7 +137,7 @@ async function probeTagger (port) {
const text = response.responseText || ''
return text.match(/MusicBrainz-Picard/) || text.match(/Nothing to see here/)
} catch (reason) {
warn(reason)
debug(reason)
return false
}
}
Expand Down

0 comments on commit 94f8080

Please sign in to comment.