Skip to content

Commit b688b74

Browse files
committed
refactor(args.py): add --verbose parameter
1 parent 3c85f3f commit b688b74

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
2222

2323
### Changed ("refactor", "chore" etc.)
2424

25+
* args.py: add `--verbose` parameter
2526
* dmidecode.py: collapse near-duplicate data in an admin-friendly way
2627

2728

args.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"""
1313

1414
__author__ = 'Linuxfabrik GmbH, Zurich/Switzerland'
15-
__version__ = '2025042002'
15+
__version__ = '2025090901'
1616

1717

1818
HELP_TEXTS = {
@@ -25,6 +25,10 @@
2525
'`(?: ... )*` is a non-capturing group that matches any sequence of characters '
2626
'that satisfy the condition inside it, zero or more times.'
2727
),
28+
'--verbose': (
29+
'Makes this plugin verbose during the operation. Useful for debugging and seeing '
30+
'what\'s going on under the hood.'
31+
),
2832
}
2933

3034
# Predefined sets for checking units and methods

0 commit comments

Comments
 (0)