Browse Source

NSM: Write server unresponsiveness to status log instead of popping up an alert window.

tags/non-daw-v1.2.0
Jonathan Moore Liles 12 years ago
parent
commit
4dcc011ca1
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      session-manager/src/session-manager.C

+ 4
- 1
session-manager/src/session-manager.C View File

@@ -1015,13 +1015,16 @@ public:
if ( active() ) if ( active() )
{ {
deactivate(); deactivate();
fl_alert( "Server is not responding..." );
log_status( "Server is not responding..." );
} }
} }
else else
{ {
if ( !active() ) if ( !active() )
{
log_status( "Server is back." );
activate(); activate();
}
} }
} }
} }


Loading…
Cancel
Save