Lines Matching +full:user +full:- +full:level
3 # SPDX-License-Identifier: GPL-2.0+
21 to the user. It provides for simple verbosity level control and can
29 verbose: Verbosity level: 0=silent, 1=progress, 3=full, 4=debug
40 """This returns True if it is likely that a user is present.
42 Sometimes we want to prompt the user, but if no one is there then this
46 True if it thinks the user is there, and False otherwise
72 def _Output(level, msg, color=None): argument
76 level: Verbosity level for this message. It will only be displayed if
77 this as high as the currently selected level.
81 if verbose >= level:
87 def DoOutput(level, msg): argument
91 level: Verbosity level for this message. It will only be displayed if
92 this as high as the currently selected level.
95 _Output(level, msg)
138 """Display a message regardless of the current output level.
140 This is used when the output was specifically requested by the user.
150 verbose: Verbosity level (0-4).