summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/crawl/crawl.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/crawl/crawl.cpp b/src/crawl/crawl.cpp
index 5070c39..3e5239c 100755
--- a/src/crawl/crawl.cpp
+++ b/src/crawl/crawl.cpp
@@ -93,7 +93,9 @@ int main( int /* argc */, char *argv[] )
// go through all type of modules and load them with the proper loader
string modulePath = luaVm.getString( "crawler.module_path" );
- LOG( logNOTICE ) << "Loading modules from path '" << modulePath << "'";
+ bool modulesSearchRecursive = luaVm.getBoolean( "crawler.modules_search_recursive" );
+ LOG( logNOTICE ) << "Loading modules from path '" << modulePath << "'"
+ << ( modulesSearchRecursive ? "(recursive)" : "" );
vector<string> normalizerModules;
#ifndef _WIN32