From 35997e9d743721ee0392812d38e29616885a427c Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Sun, 13 Dec 2015 15:53:59 +0100 Subject: renamed the project to aCms (avoid confusion) --- src/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/main.cpp') 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 -#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( ) ); + srv.applications_pool( ).mount( cppcms::applications_factory( ) ); 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; } -- cgit v1.2.3-54-g00ecf