diff options
Diffstat (limited to 'p2pvr/devices/frontend.cpp')
-rw-r--r-- | p2pvr/devices/frontend.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/p2pvr/devices/frontend.cpp b/p2pvr/devices/frontend.cpp index 1026a20..b1def01 100644 --- a/p2pvr/devices/frontend.cpp +++ b/p2pvr/devices/frontend.cpp @@ -4,6 +4,8 @@ #include <linux/dvb/frontend.h> #include <factory.impl.h> +using namespace IceTray::Logging; + namespace P2PVR { namespace DVB { Frontend::Frontend(TunerI * t, const struct dvb_frontend_info & i, IceTray::Logging::LoggerPtr log) : @@ -28,7 +30,7 @@ Frontend::GetStatus() const { fe_status_t status; if (ioctl(tuner->frontendFD, FE_READ_STATUS, &status) < 0) { - logger->messagebf(LOG::ERR, "Reading frontend %s status failed (%s:%d)", tuner->GetDevice(), strerror(errno), errno); + logger->messagebf(LogLevel::ERR, "Reading frontend %s status failed (%s:%d)", tuner->GetDevice(), strerror(errno), errno); throw P2PVR::DeviceError(tuner->GetDevice(), strerror(errno), errno); } return status; |