Skip to content

Commit 74c262c

Browse files
committed
Fix logging method not existing (might add aliases in dearlog)
1 parent e538ae1 commit 74c262c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

shaderflow/piano/module.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -294,10 +294,10 @@ def pipeline(self) -> Iterable[ShaderVariable]:
294294
@staticmethod
295295
def fluid_install() -> None:
296296
if not shutil.which("fluidsynth"):
297-
logger.critical("FluidSynth wasn't found for playing or rendering midi, get it at:")
298-
logger.critical("- Windows: https://github.com/FluidSynth/fluidsynth/releases")
299-
logger.critical("- Linux: (package manager) (install) fluidsynth")
300-
logger.critical("- MacOS: brew install fluidsynth")
297+
logger.crit("FluidSynth wasn't found for playing or rendering midi, get it at:")
298+
logger.crit("- Windows: https://github.com/FluidSynth/fluidsynth/releases")
299+
logger.crit("- Linux: (package manager) (install) fluidsynth")
300+
logger.crit("- MacOS: brew install fluidsynth")
301301

302302
def fluid_start(self) -> None:
303303
import fluidsynth

0 commit comments

Comments
 (0)