summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2009-06-10 08:48:21 +0000
committerNorbert Preining <preining@logic.at>2009-06-10 08:48:21 +0000
commit1ba2d46d9d1e313102e5f61ed8abd69f744e8d13 (patch)
tree55db1c49dc48834df89511b668b2f8e1221dfc19 /Master
parent5605262cfdf53b72ee722f6b3a97346c8ed1f1e2 (diff)
don't pollute the console output too much, log only the "(re)creating format"
lines git-svn-id: svn://tug.org/texlive/trunk@13693 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-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 10fa01371a7..44c42752cca 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -511,7 +511,7 @@ sub handle_execute_actions {
}
if ($opt_fmt && !$::regenerate_all_formats) {
for my $f (keys %do_enable) {
- info ("(re)creating format dump $f\n");
+ log ("(re)creating format dump $f\n");
$errors += do_cmd_and_check("fmtutil-sys --byfmt $f");
$done_formats{$f} = 1;
}
@@ -526,7 +526,7 @@ sub handle_execute_actions {
next if defined($done_formats{$def{'name'}});
for my $e (@upen) {
if ($def{'engine'} eq $e) {
- info("updating format $def{'name'} (engine $e updated)\n");
+ log ("updating format $def{'name'} (engine $e updated)\n");
$errors += do_cmd_and_check("fmtutil-sys --byfmt $def{'name'}");
$done_formats{$def{'name'}} = 1;
}