summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorPeter Baumann <p.baumann@jacobs-university.de>2010-03-30 19:48:27 +0200
committerwww-data <www-data@ubuntu.localdomain>2010-06-08 10:59:33 +0200
commit4530d1219de64bf2651f069fbb47f6fe513c20e7 (patch)
tree963377e00116f7913f16264a6903b2d4d27f1f9c /server
parentd041f9e0c41528747e0ebe2e65c5a644ee99f48f (diff)
downloadrasdaman-upstream-4530d1219de64bf2651f069fbb47f6fe513c20e7.tar.gz
rasdaman-upstream-4530d1219de64bf2651f069fbb47f6fe513c20e7.tar.xz
rasdaman-upstream-4530d1219de64bf2651f069fbb47f6fe513c20e7.zip
PB: defaults are shielded by RMANDEBUG (needs to be propagated to r' community!)
Diffstat (limited to 'server')
-rw-r--r--server/rasserver_main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/rasserver_main.cc b/server/rasserver_main.cc
index adaaa8c..eb06669 100644
--- a/server/rasserver_main.cc
+++ b/server/rasserver_main.cc
@@ -287,7 +287,6 @@ bool initialization()
managementInterval = clientTimeOut/4;
-#ifdef RMANDEBUG
//tilesize
StorageLayout::DefaultTileSize = configuration.getDefaultTileSize();
RMInit::logOut << "Tile size set to : " << StorageLayout::DefaultTileSize << endl;
@@ -304,8 +303,10 @@ bool initialization()
StorageLayout::DefaultIndexSize = configuration.getDefaultIndexSize();
RMInit::logOut << "IndexSize set to : " << StorageLayout::DefaultIndexSize << endl;
+#ifdef RMANDEBUG
RManDebug = configuration.getDebugLevel();
RMInit::logOut<<"Debug level: " << RManDebug << endl;
+#endif
try
{
@@ -353,7 +354,6 @@ bool initialization()
//use tilecontainer
RMInit::useTileContainer = configuration.useTileContainer();
RMInit::logOut << "Use Tile Container: " << RMInit::useTileContainer << endl;
-#endif
return true;
}