diff options
| author | auth <[email protected]> | 2020-07-11 23:19:24 +0200 |
|---|---|---|
| committer | auth <[email protected]> | 2020-07-11 23:19:24 +0200 |
| commit | 883aafaf87ec22aa4c9142ac5c836040a0f531b4 (patch) | |
| tree | 38a73a202d815719991efeecfd3769dea7d20984 /server/src/util/io.cpp | |
| parent | Added blacklist implementation on server. (diff) | |
| download | loader-883aafaf87ec22aa4c9142ac5c836040a0f531b4.tar.xz loader-883aafaf87ec22aa4c9142ac5c836040a0f531b4.zip | |
Small changes.
Diffstat (limited to 'server/src/util/io.cpp')
| -rw-r--r-- | server/src/util/io.cpp | 1 |
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; } |