diff mbox series

hashserv: improve the loglevel error message to be more helpful

Message ID 20240218005106.2268185-1-paulg@kernel.org
State Accepted, archived
Commit df184b2a4e80fca847cfe90644110b74a1af613e
Headers show
Series hashserv: improve the loglevel error message to be more helpful | expand

Commit Message

paulg@kernel.org Feb. 18, 2024, 12:51 a.m. UTC
From: Paul Gortmaker <paulg@kernel.org>

Coming from a kernel background, I was thinking along the lines of

	dmesg -n <integer>

for loglevel adjustments.  So I tried various large and small and
even zero number values with no luck before getting frustrated and
opening up the python.

Let us save others the frustration and give a hint what the args it
expects should look like.

Signed-off-by: Paul Gortmaker <paulg@kernel.org>
diff mbox series

Patch

diff --git a/bin/bitbake-hashserv b/bin/bitbake-hashserv
index c913c4e3..4bfb7abf 100755
--- a/bin/bitbake-hashserv
+++ b/bin/bitbake-hashserv
@@ -132,7 +132,7 @@  The following permissions are supported by the server:
 
     level = getattr(logging, args.log.upper(), None)
     if not isinstance(level, int):
-        raise ValueError("Invalid log level: %s" % args.log)
+        raise ValueError("Invalid log level: %s (Try ERROR/WARNING/INFO/DEBUG)" % args.log)
 
     logger.setLevel(level)
     console = logging.StreamHandler()