Replaced error messages with Logger

dev
Tomasz Kapuściński 2022-04-23 10:48:35 +02:00
parent 7664594b8e
commit 7135a6660b
1 changed files with 4 additions and 4 deletions

View File

@ -20,12 +20,12 @@
#include "graphics/model/model_mod.h" #include "graphics/model/model_mod.h"
#include "common/ioutils.h" #include "common/ioutils.h"
#include "common/logger.h"
#include "common/resources/inputstream.h" #include "common/resources/inputstream.h"
#include "graphics/model/model_io_exception.h" #include "graphics/model/model_io_exception.h"
#include "graphics/model/model_io_structs.h" #include "graphics/model/model_io_structs.h"
#include <iostream>
#include <vector> #include <vector>
#include <nlohmann/json.hpp> #include <nlohmann/json.hpp>
@ -155,7 +155,7 @@ void GLTFLoader::ReadBuffers()
} }
else else
{ {
std::cerr << "Base64 not yet supported"; GetLogger()->Error("Base64 not yet supported\n");
} }
m_buffers.emplace_back(std::move(buffer)); m_buffers.emplace_back(std::move(buffer));
@ -638,7 +638,7 @@ std::vector<glm::vec2> GLTFLoader::ReadUVs(int index)
} }
else else
{ {
std::cerr << "Invalid UV type: " << accessor.componentType << '\n'; GetLogger()->Error("Invalid UV type: %d\n", accessor.componentType);
} }
return uvs; return uvs;
@ -677,7 +677,7 @@ std::vector<glm::u8vec4> GLTFLoader::ReadColors(int index)
} }
else else
{ {
std::cerr << "Invalid color type: " << accessor.componentType << '\n'; GetLogger()->Error("Invalid color type: %d\n", accessor.componentType);
} }
return colors; return colors;