summaryrefslogtreecommitdiff
path: root/Master/texmf
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2008-10-02 21:49:57 +0000
committerNorbert Preining <preining@logic.at>2008-10-02 21:49:57 +0000
commit33db17ffed0b24fcb11209625538571dfdefcc9d (patch)
treead390050e0a411d186c8392a3a5e17054953bb69 /Master/texmf
parentcb791554ea617677549a828d9a68657600f212b0 (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-xMaster/texmf/scripts/texlive/tlmgr.pl4
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 = "";
}