diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index fe254e3f..ae47ad99 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -5,7 +5,17 @@ enhancements, and fixes in each version of the tool. --- -## Version 0.1.4 +## Version 0.1.6 + +**Release Date:** October 15, 2024 + +### Logging + +- **Logging**: Changed logging to INFO by default. + +--- + +## Version 0.1.5 **Release Date:** October 15, 2024 diff --git a/pyproject.toml b/pyproject.toml index d3bc30fe..d3e0f793 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pan-scm-sdk" -version = "0.1.5" +version = "0.1.6" description = "Python SDK for Palo Alto Networks Strata Cloud Manager." authors = ["Calvin Remsburg "] license = "Apache 2.0" diff --git a/scm/utils/logging.py b/scm/utils/logging.py index 93d1fc3a..ef3363ce 100644 --- a/scm/utils/logging.py +++ b/scm/utils/logging.py @@ -20,11 +20,11 @@ def setup_logger(name: str) -> logging.Logger: """Set up and return a logger with the given name.""" logger = logging.getLogger(name) - logger.setLevel(logging.DEBUG) + logger.setLevel(logging.INFO) # Console handler ch = logging.StreamHandler(sys.stdout) - ch.setLevel(logging.DEBUG) + ch.setLevel(logging.INFO) # Formatter formatter = logging.Formatter(