mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
Revert "Add log_only to debug messages (#25545)"
This reverts commit 9e8cc26720
.
This commit is contained in:
parent
00d5de3dec
commit
498aea8acc
3 changed files with 6 additions and 7 deletions
|
@ -174,9 +174,9 @@ class Display:
|
|||
def vvvvvv(self, msg, host=None):
|
||||
return self.verbose(msg, host=host, caplevel=5)
|
||||
|
||||
def debug(self, msg, log_only=False):
|
||||
def debug(self, msg):
|
||||
if C.DEFAULT_DEBUG:
|
||||
self.display("%6d %0.5f: %s" % (os.getpid(), time.time(), msg), color=C.COLOR_DEBUG, log_only=log_only)
|
||||
self.display("%6d %0.5f: %s" % (os.getpid(), time.time(), msg), color=C.COLOR_DEBUG)
|
||||
|
||||
def verbose(self, msg, host=None, caplevel=2):
|
||||
if self.verbosity > caplevel:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue