We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3375095 + d9e9fcd commit 04b96d2Copy full SHA for 04b96d2
jamf2snipe
@@ -30,7 +30,7 @@
30
# _snipeit_custom_name_1234567890 = subset jamf_key
31
#
32
# A list of valid subsets are:
33
-version = "1.0.5"
+version = "1.0.6"
34
35
validsubset = [
36
"general",
@@ -84,10 +84,10 @@ if user_args.version:
84
raise SystemExit
85
86
# Notify users they're going to get a wall of text in verbose mode.
87
-if user_args.verbose:
88
- logging.basicConfig(level=logging.INFO)
89
-elif user_args.debug:
+if user_args.debug:
90
logging.basicConfig(level=logging.DEBUG)
+elif user_args.verbose:
+ logging.basicConfig(level=logging.INFO)
91
else:
92
logging.basicConfig(level=logging.WARNING)
93
0 commit comments