diff options
Diffstat (limited to 'host/lib/cal')
-rw-r--r-- | host/lib/cal/database.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/cal/database.cpp b/host/lib/cal/database.cpp index 87f74bc8d..4b59cf913 100644 --- a/host/lib/cal/database.cpp +++ b/host/lib/cal/database.cpp @@ -49,7 +49,9 @@ std::string get_cal_path_rc(const std::string& key) bool has_cal_data_rc(const std::string& key, const std::string&) { auto fs = rc::get_filesystem(); - return fs.is_file(get_cal_path_rc(key)); + const std::string cal_path(get_cal_path_rc(key)); + UHD_LOG_TRACE(LOG_ID, "Checking for resource " << cal_path); + return fs.is_file(cal_path); } //! Return a byte array for a given cal resource |