From df184b2a4e80fca847cfe90644110b74a1af613e Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Sat, 17 Feb 2024 19:51:06 -0500 Subject: hashserv: improve the loglevel error message to be more helpful Coming from a kernel background, I was thinking along the lines of dmesg -n 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 Signed-off-by: Richard Purdie --- bin/bitbake-hashserv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/bitbake-hashserv') diff --git a/bin/bitbake-hashserv b/bin/bitbake-hashserv index c913c4e3c..4bfb7abfb 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() -- cgit 1.2.3-korg