summaryrefslogtreecommitdiff
path: root/src/crawl/crawl.cpp
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2014-10-11 21:26:11 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2014-10-11 21:26:11 +0200
commit3ce1734080a7e28ef7385e8c5f22d74631041499 (patch)
treecf238c4658d38e02b7e0b928fe1e76e1d8ede5c0 /src/crawl/crawl.cpp
parentdbb3cae7f15512b04e8a17d4f44fd5b3531a2b51 (diff)
downloadcrawler-3ce1734080a7e28ef7385e8c5f22d74631041499.tar.gz
crawler-3ce1734080a7e28ef7385e8c5f22d74631041499.tar.bz2
playing with some more obscure lua data types
Diffstat (limited to 'src/crawl/crawl.cpp')
-rwxr-xr-xsrc/crawl/crawl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crawl/crawl.cpp b/src/crawl/crawl.cpp
index 3e5239c..4abd37c 100755
--- a/src/crawl/crawl.cpp
+++ b/src/crawl/crawl.cpp
@@ -94,7 +94,7 @@ 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" );
bool modulesSearchRecursive = luaVm.getBoolean( "crawler.modules_search_recursive" );
- LOG( logNOTICE ) << "Loading modules from path '" << modulePath << "'"
+ LOG( logNOTICE ) << "Loading modules from path '" << modulePath << "' "
<< ( modulesSearchRecursive ? "(recursive)" : "" );
vector<string> normalizerModules;