Skip to content

Commit

Permalink
confluence-space-avatar-favicons: tweak log prefix
Browse files Browse the repository at this point in the history
Add the word "Confluence" to the log prefix used by userscript
confluence-space-avatar-favicons.user.js, which would make it easier to
debug on pages like:

    https://andrybak.atlassian.net/wiki/spaces/TS/pages/163841/Test+page
  • Loading branch information
rybak committed Dec 17, 2023
1 parent 36c1808 commit 90fa134
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions confluence-space-avatar-favicons.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// @include https://*confluence*/*
// @match https://confluence.example.com/*
// @icon https://wac-cdn-2.atlassian.com/image/upload/f_auto,q_auto/dam/jcr:5d1374c2-276f-4bca-9ce4-813aba614b7a/confluence-icon-gradient-blue.svg?cdnVersion=691
// @version 2
// @version 3
// @license MIT
// @grant none
// ==/UserScript==
Expand All @@ -16,7 +16,7 @@
'use strict';

function log(...toLog) {
console.log("[avatar favicons]", ...toLog);
console.log("[Confluence: avatar favicons]", ...toLog);
}

function changeFavicon() {
Expand Down

0 comments on commit 90fa134

Please sign in to comment.