aboutsummaryrefslogtreecommitdiff
path: root/server/src/util/io.cpp
diff options
context:
space:
mode:
authorauth <[email protected]>2020-07-11 23:19:24 +0200
committerauth <[email protected]>2020-07-11 23:19:24 +0200
commit883aafaf87ec22aa4c9142ac5c836040a0f531b4 (patch)
tree38a73a202d815719991efeecfd3769dea7d20984 /server/src/util/io.cpp
parentAdded blacklist implementation on server. (diff)
downloadloader-883aafaf87ec22aa4c9142ac5c836040a0f531b4.tar.xz
loader-883aafaf87ec22aa4c9142ac5c836040a0f531b4.zip
Small changes.
Diffstat (limited to 'server/src/util/io.cpp')
-rw-r--r--server/src/util/io.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/server/src/util/io.cpp b/server/src/util/io.cpp
index d23cdda..8d74cd4 100644
--- a/server/src/util/io.cpp
+++ b/server/src/util/io.cpp
@@ -25,7 +25,6 @@ void io::init(const bool& to_file) {
bool io::read_file(const std::string_view name, std::vector<char>& out) {
std::ifstream file(name.data());
if (!file.good()) {
- io::logger->error("failed to load {}.", name.data());
return false;
}