diff options
author | Norbert Preining <preining@logic.at> | 2018-05-23 02:33:32 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2018-05-23 02:33:32 +0000 |
commit | f4fad89bb1e902329ae4913c971a4b35f89ecdc3 (patch) | |
tree | 8c48d603dadf156a9a588c467c309357171b33c6 /Master | |
parent | 133247fba2e655af3d1907ca806032a129d95fdf (diff) |
downgrade some debug statements to ddebug
git-svn-id: svn://tug.org/texlive/trunk@47808 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 12 |
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. |