diff options
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index 1c2259c8827..2482964cafd 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -1537,6 +1537,7 @@ file (see L<process_logging_options>) is defined, it also writes there. =cut sub debug { + return if ($::opt_verbosity < 1); logit(\*STDOUT, 1, "D:", @_); } @@ -1556,6 +1557,7 @@ we ever found useful when debugging. =cut sub ddebug { + return if ($::opt_verbosity < 2); logit(\*STDOUT, 2, "DD:", @_); } |