summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp
index a1a2e71..dfb7743 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -4,7 +4,7 @@
#include <signal.h>
-#include "strusCms.hpp"
+#include "aCms.hpp"
static bool terminate = false;
static bool got_sighup = false;
@@ -32,21 +32,21 @@ int main( int argc, char *argv[] )
global_srv = &srv;
try {
- BOOSTER_INFO( "strusCms" ) << "Restarting application..";
+ BOOSTER_INFO( "aCms" ) << "Restarting application..";
- srv.applications_pool( ).mount( cppcms::applications_factory<apps::strusCms>( ) );
+ srv.applications_pool( ).mount( cppcms::applications_factory<apps::aCms>( ) );
srv.run( );
if( got_sighup ) {
- BOOSTER_INFO( "strusCms" ) << "Reloading configuration on SIGHUP..";
+ BOOSTER_INFO( "aCms" ) << "Reloading configuration on SIGHUP..";
got_sighup = false;
} else {
terminate = true;
}
} catch( std::exception const &e ) {
- BOOSTER_ERROR( "strusCms" ) << e.what() ;
+ BOOSTER_ERROR( "aCms" ) << e.what() ;
srv.shutdown( );
continue;
}