mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-09-02 01:57:06 +08:00
change print to logging.info
This commit is contained in:
parent
9a70423973
commit
27720a1e45
@ -25,13 +25,13 @@ if model_management.sage_attention_enabled():
|
||||
from sageattn import sageattn_blackwell
|
||||
SAGE_ATTENTION_3_AVAILABLE = True
|
||||
sage_attention_available = True
|
||||
print("Found SageAttention3 (sageattn package)")
|
||||
logging.info("Found SageAttention3 (sageattn package)")
|
||||
|
||||
except ImportError:
|
||||
try:
|
||||
from sageattention import sageattn
|
||||
sage_attention_available = True
|
||||
print("Found SageAttention2 (sageattention package)")
|
||||
logging.info("Found SageAttention2 (sageattention package)")
|
||||
except ModuleNotFoundError as e:
|
||||
pass
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user