aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Fritiofson <andreas.fritiofson@gmail.com>2009-11-21 09:30:09 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-11-21 09:30:09 -0800
commit425e43d9d1f09a4de86eae89c91924ec98ef2de0 (patch)
treeaac3557a7a81e4be4cc1694750a255740cb2ea3f
parent69c751956293e822faa6cf844f2864d81c36a578 (diff)
show script search dirs in debug log
Add this to ease debugging why the standard scripts aren't found on the default script search path in some build/install enviroments. Especially on Windows it's not straight forward where openocd actually looks for the scripts. Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
-rw-r--r--src/helper/configuration.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/helper/configuration.c b/src/helper/configuration.c
index 74bcc9b0..2ea5da48 100644
--- a/src/helper/configuration.c
+++ b/src/helper/configuration.c
@@ -41,6 +41,8 @@ void add_script_search_dir (const char *dir)
script_search_dirs[num_script_dirs-1] = strdup(dir);
script_search_dirs[num_script_dirs] = NULL;
+
+ LOG_DEBUG("adding %s", dir);
}
void add_config_command (const char *cfg)