fix: logger wrong call (#1159)

* fix: logger wrong call

* fix: log error in rvc_for_realtime.py
This commit is contained in:
陈然
2023-09-02 11:02:46 +08:00
committed by GitHub
parent 04a33b9709
commit a86806b01a
2 changed files with 3 additions and 3 deletions

View File

@@ -341,5 +341,5 @@ class RVC:
.float()
)
t5 = ttime()
logger.info("Spent time: fea =", t2 - t1, ", index =", t3 - t2, ", f0 =", t4 - t3, ", model =", t5 - t4)
logger.info("Spent time: fea = %s, index = %s, f0 = %s, model = %s", t2 - t1, t3 - t2, t4 - t3, t5 - t4)
return infered_audio