menu
 

AudiokineticのコミュニティQ&AはWwiseやStrataのコミュニティ内でユーザ同士が質問・回答をし合うことができるフォーラムです。Audiokineticテクニカルサポートチームからの回答をご希望の場合は、必ず サポートチケットページ をご利用ください。

0 支持
Hello!

We are running a variety of commandlets on UE5.1 using a project based on WWISE 2022.1.1.

Throughout these commandlets we are spammed with the following warning:

 UE_LOG(LogWwiseResourceLoader, Warning, TEXT("No ResourceLoaderImpl"));

This warning is used a lot in the code base, so tracking down which exact one causes it (And also fixing it!) is not a quick task to do. Especially if it involves changing code to handle the warning differently when running commandlets.

Is this warning planned to be fixed on the roadmap? If so, when? If not what is the suggested fix/solution. We don't want any warnings or errors on any of our builds, but also don't want to ignore a warning if it's outputted for a reason.

Thanks!

Eddie
Eddie S. (120 ポイント) General Discussion

回答 1

+2 支持

We had exactly the same problem with these lines appearing all over our server and commandlet builds.

You can replace the log lines with

UE_CLOG(!IsRunningDedicatedServer() && !IsRunningCommandlet(), LogWwiseResourceLoader, Verbose, TEXT(....) )

to only display on a client, and further downgrade to Verbose.

I'm not sure how useful this log is in practice or why it needs to be repeated so often.

Robin F. (210 ポイント)
...