Skip to content

Commit

Permalink
add log before generate
Browse files Browse the repository at this point in the history
  • Loading branch information
Werzet authored Nov 30, 2024
1 parent 22a04f1 commit f940849
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Content.Server/SS220/TTS/TTSManager.cs
Original file line number Diff line number Diff line change
@@ -104,7 +104,11 @@ public void Initialize()
return data;
}

_sawmill.Info($"Generate new audio for '{text}' speech by '{speaker}' speaker");
if (isRadio)
_sawmill.Info($"Generate new radio sound for '{text}' speech by '{speaker}' speaker");
else
_sawmill.Info($"Generate new audio for '{text}' speech by '{speaker}' speaker");

var reqTime = DateTime.UtcNow;
try
{

0 comments on commit f940849

Please sign in to comment.