chore: do not log failing to open sound curve file in iw4

This commit is contained in:
Jan 2024-08-12 08:53:19 +02:00
parent dcd7396087
commit b3d59a3f28
No known key found for this signature in database
GPG Key ID: 44B581F78FF5C57C

View File

@ -3,7 +3,6 @@
#include "Parsing/Graph2D/Graph2DReader.h" #include "Parsing/Graph2D/Graph2DReader.h"
#include <format> #include <format>
#include <iostream>
namespace sound_curve namespace sound_curve
{ {
@ -14,7 +13,6 @@ namespace sound_curve
const auto file = searchPath->Open(fileName); const auto file = searchPath->Open(fileName);
if (!file.IsOpen()) if (!file.IsOpen())
{ {
std::cerr << std::format("Failed to open file for sound curve \"{}\"\n", soundCurveName);
return nullptr; return nullptr;
} }