summaryrefslogtreecommitdiff
path: root/libs/pbd
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-13 16:55:40 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-13 16:55:40 -0400
commitccdc6fcd6af6a5daa76fe5205acfe6c340673d80 (patch)
treeaa87b1b96622086972f4dcc518725114206da21d /libs/pbd
parent550eeecc63eb4a20fcff0799e9ab7e7ac9b7a294 (diff)
Add DEBUG_TRACE output to file utility functions in libpbd
Diffstat (limited to 'libs/pbd')
-rw-r--r--libs/pbd/debug.cc1
-rw-r--r--libs/pbd/file_utils.cc28
-rw-r--r--libs/pbd/pbd/debug.h1
3 files changed, 21 insertions, 9 deletions
diff --git a/libs/pbd/debug.cc b/libs/pbd/debug.cc
index 51d4d1e871..fba457c83e 100644
--- a/libs/pbd/debug.cc
+++ b/libs/pbd/debug.cc
@@ -49,6 +49,7 @@ uint64_t PBD::DEBUG::FileManager = PBD::new_debug_bit ("filemanager");
uint64_t PBD::DEBUG::Pool = PBD::new_debug_bit ("pool");
uint64_t PBD::DEBUG::EventLoop = PBD::new_debug_bit ("eventloop");
uint64_t PBD::DEBUG::AbstractUI = PBD::new_debug_bit ("abstractui");
+uint64_t PBD::DEBUG::FileUtils = PBD::new_debug_bit ("fileutils");
uint64_t PBD::debug_bits = 0x0;
diff --git a/libs/pbd/file_utils.cc b/libs/pbd/file_utils.cc
index 01c2fe286a..1a32377ff6 100644
--- a/libs/pbd/file_utils.cc
+++ b/libs/pbd/file_utils.cc
@@ -35,6 +35,7 @@
#include "pbd/compose.h"
#include "pbd/file_utils.h"
+#include "pbd/debug.h"
#include "pbd/error.h"
#include "pbd/pathscanner.h"
#include "pbd/stl_delete.h"
@@ -80,6 +81,11 @@ find_matching_files_in_directory (const std::string& directory,
std::string full_path(directory);
full_path = Glib::build_filename (full_path, *file_iter);
+ DEBUG_TRACE (
+ DEBUG::FileUtils,
+ string_compose("Found file %1\n", full_path)
+ );
+
result.push_back(full_path);
}
}
@@ -117,24 +123,28 @@ find_file_in_search_path(const SearchPath& search_path,
if (tmp.size() == 0)
{
+ DEBUG_TRACE (
+ DEBUG::FileUtils,
+ string_compose("No file matching %1 found in Path: %2\n", filename, search_path.to_string())
+ );
return false;
}
-#if 0
if (tmp.size() != 1)
{
- info << string_compose
- (
- "Found more than one file matching %1 in search path %2",
- filename,
- search_path ()
- )
- << endmsg;
+ DEBUG_TRACE (
+ DEBUG::FileUtils,
+ string_compose("Found more that one file matching %1 in Path: %2\n", filename, search_path.to_string())
+ );
}
-#endif
result = tmp.front();
+ DEBUG_TRACE (
+ DEBUG::FileUtils,
+ string_compose("Found file %1 in Path: %2\n", filename, search_path.to_string())
+ );
+
return true;
}
diff --git a/libs/pbd/pbd/debug.h b/libs/pbd/pbd/debug.h
index 989cd42dd1..704c9d0dad 100644
--- a/libs/pbd/pbd/debug.h
+++ b/libs/pbd/pbd/debug.h
@@ -43,6 +43,7 @@ namespace PBD {
extern uint64_t Pool;
extern uint64_t EventLoop;
extern uint64_t AbstractUI;
+ extern uint64_t FileUtils;
}
}