Commit 925ce74f authored by Ramon Nou's avatar Ramon Nou
Browse files

Removed some extra debug in file open

parent 7c5a9c4e
Loading
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -34,7 +34,6 @@
#include "fs_plugin/fs_plugin.hpp"
#include "cargo.hpp"
#include <iostream>
#include "../logger/logger.hpp"
extern "C" {
#include <unistd.h>
};
@@ -321,7 +320,6 @@ open(const std::filesystem::path& filepath, int flags, ::mode_t mode,
    int fd = fs_plugin->open(filepath.c_str(), flags, mode);

    if(fd == -1) {
        LOGGER_INFO("[PLUGIN] Open error {}", filepath.c_str());
        throw io_error("posix_file::open ", errno);
    }