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.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index 76497b26050..dba3b8e22b9 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -517,7 +517,7 @@ and thus honors various env variables like C<TMPDIR>, C<TMP>, and C<TEMP>.
sub initialize_global_tmpdir {
$::tl_tmpdir = File::Temp::tempdir(CLEANUP => 1);
- debug("tl_tempdir: creating global tempdir $::tl_tmpdir\n");
+ ddebug("tl_tempdir: creating global tempdir $::tl_tmpdir\n");
return ($::tl_tmpdir);
}
@@ -531,7 +531,7 @@ is terminated.
sub tl_tmpdir {
initialize_global_tmpdir() if (!defined($::tl_tmpdir));
my $tmp = File::Temp::tempdir(DIR => $::tl_tmpdir, CLEANUP => 1);
- debug("tl_tempdir: creating tempdir $tmp\n");
+ ddebug("tl_tempdir: creating tempdir $tmp\n");
return ($tmp);
}
@@ -546,7 +546,7 @@ Arguments are passed on to C<File::Temp::tempfile>.
sub tl_tmpfile {
initialize_global_tmpdir() if (!defined($::tl_tmpdir));
my ($fh, $fn) = File::Temp::tempfile(@_, DIR => $::tl_tmpdir, UNLINK => 1);
- debug("tl_tempfile: creating tempfile $fn\n");
+ ddebug("tl_tempfile: creating tempfile $fn\n");
return ($fh, $fn);
}
@@ -2595,11 +2595,11 @@ sub download_file {
}
} else {
if (!defined($::tldownload_server)) {
- debug("::tldownload_server not defined\n");
+ ddebug("::tldownload_server not defined\n");
} else {
- debug("::tldownload_server->enabled is not set\n");
+ ddebug("::tldownload_server->enabled is not set\n");
}
- debug("persistent connection not set up, using wget\n");
+ debug("persistent connection not set up, using fallback downloader\n");
}
# try again.