Skip to content

Commit

Permalink
fix: change CN annotator not loaded message to not be an error (#207)
Browse files Browse the repository at this point in the history
* fix: change CN annotator not loaded message to not be an error
  • Loading branch information
tazlin authored May 19, 2023
1 parent c515856 commit d4b9fa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge_stable_diffusion.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def main():
if bridge_data.allow_controlnet:
annotators_preloaded_successfully = SharedModelManager.preloadAnnotators()
if not annotators_preloaded_successfully:
logger.error("Annotators failed to preload. ControlNet will not be available.", status="Error")
logger.warning("Annotators were not preloaded. ControlNet will not be available.")
bridge_data.allow_controlnet = False

worker.start()
Expand Down

0 comments on commit d4b9fa4

Please sign in to comment.