MCPcopy Index your code
hub / github.com/cirosantilli/linux-kernel-module-cheat / log_info

Method log_info

common.py:840–844  ·  view source on GitHub ↗
(self, msg='', flush=False, **kwargs)

Source from the content-addressed store, hash-verified

838 print('error: {}'.format(msg), file=sys.stdout)
839
840 def log_info(self, msg='', flush=False, **kwargs):
841 if not self.env['quiet']:
842 print('{}'.format(msg), **kwargs)
843 if flush:
844 sys.stdout.flush()
845
846 def main(self, *args, **kwargs):
847 '''

Callers 3

test_setupMethod · 0.80
test_teardownMethod · 0.80
teardownMethod · 0.80

Calls

no outgoing calls

Tested by 2

test_setupMethod · 0.64
test_teardownMethod · 0.64