From cb91e74c6f8e7cffcee616b72932fcce8134a520 Mon Sep 17 00:00:00 2001 From: alphasentaurii Date: Fri, 27 Sep 2024 11:21:48 -0400 Subject: [PATCH] change debug to info --- crds/client/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crds/client/api.py b/crds/client/api.py index f1408e6c3..3f9552b7b 100644 --- a/crds/client/api.py +++ b/crds/client/api.py @@ -372,7 +372,7 @@ def get_build_context(observatory=None): try: return str(S.get_build_context(observatory, calver)) except ServiceError: - log.debug("Server build context could not be identified. Using 'latest' instead.") + log.info("Server build context could not be identified. Using 'latest' instead.") return get_default_context(observatory=observatory, state="latest")