diff options
author | Norbert Preining <preining@logic.at> | 2008-10-02 21:49:57 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2008-10-02 21:49:57 +0000 |
commit | 33db17ffed0b24fcb11209625538571dfdefcc9d (patch) | |
tree | ad390050e0a411d186c8392a3a5e17054953bb69 /Master/texmf | |
parent | cb791554ea617677549a828d9a68657600f212b0 (diff) |
do not issue a warning at all (only as debug) if the tlmgr.log file
cannot be opened.
git-svn-id: svn://tug.org/texlive/trunk@10829 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf')
-rwxr-xr-x | Master/texmf/scripts/texlive/tlmgr.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl index c6a8318e7ab..cf7fbfd3aac 100755 --- a/Master/texmf/scripts/texlive/tlmgr.pl +++ b/Master/texmf/scripts/texlive/tlmgr.pl @@ -95,8 +95,8 @@ my $packagelogfile = ($opt_packagelogfile ? $opt_packagelogfile : # # Try to open the packagelog file, but do NOT die when that does not work if (!open(PACKAGELOG, ">>$packagelogfile")) { - tlwarn("Cannot open package log file $packagelogfile for appending\n"); - tlwarn("Will not log package installation/removal/update for that run\n"); + debug("Cannot open package log file $packagelogfile for appending\n"); + debug("Will not log package installation/removal/update for that run\n"); $packagelogfile = ""; } |