summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLUtils.pm
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2017-11-11 07:34:35 +0000
committerNorbert Preining <preining@logic.at>2017-11-11 07:34:35 +0000
commitc0a4ac7b732216ab4a37bd361942cc8b53265957 (patch)
tree7e41367d6a6270e9251fcd95908f5fde3d321ef5 /Master/tlpkg/TeXLive/TLUtils.pm
parent42993aa20f56e2f886943e8f4540ca17433173cf (diff)
forgot to change some prints to debug
git-svn-id: svn://tug.org/texlive/trunk@45747 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLUtils.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 54ed8dbac53..57d020776a2 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -4221,7 +4221,7 @@ sub ensure_json_available {
$envdefined = 1;
if ($ENV{'TL_JSONMODE'} eq "texlive") {
$jsonmode = "texlive";
- print STDERR "texlive json module used!\n";
+ debug("texlive json module used!\n");
return;
} elsif ($ENV{'TL_JSONMODE'} eq "json") {
# nothing to do
@@ -4239,11 +4239,11 @@ sub ensure_json_available {
tldie("env variable TL_JSONMODE request JSON module but cannot be load!\n");
}
$jsonmode = "texlive";
- print STDERR "texlive json module used!\n";
+ debug("texlive json module used!\n");
} else {
$jsonmode = "json";
my $json = JSON->new;
- print STDERR "JSON " . $json->backend . " used!\n";
+ debug("JSON " . $json->backend . " used!\n");
}
}