Skip to content

Commit

Permalink
Demote recipe string initialization to debug and make more descriptive (
Browse files Browse the repository at this point in the history
  • Loading branch information
kylesayrs authored Aug 28, 2024
1 parent 6ad6e05 commit 0fce948
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/llmcompressor/recipe/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ def create_instance(
if not os.path.isfile(path_or_modifiers):
# not a local file
# assume it's a string
logger.warning(
"Could not process input as a file path or zoo stub, "
"attempting to process it as a string."
logger.debug(
"Could not initialize recipe as a file path or zoo stub, "
"attempting to process as a string."
)
logger.debug(f"Input string: {path_or_modifiers}")
obj = _load_json_or_yaml_string(path_or_modifiers)
Expand Down

0 comments on commit 0fce948

Please sign in to comment.