summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLUtils.pm
diff options
context:
space:
mode:
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");
}
}