1
0
Fork 0

Minor output format issue.

This commit is contained in:
ThorstenB 2011-02-13 18:31:26 +01:00
parent ae320ca46c
commit 45f526aca5

View file

@ -247,7 +247,7 @@ do_reinit (const SGPropertyNode * arg)
if (subsystem == 0) {
result = false;
SG_LOG( SG_GENERAL, SG_ALERT,
"Subsystem " << name << "not found" );
"Subsystem " << name << " not found" );
} else {
subsystem->reinit();
}
@ -280,7 +280,7 @@ do_suspend (const SGPropertyNode * arg)
SGSubsystem * subsystem = globals->get_subsystem(name);
if (subsystem == 0) {
result = false;
SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << "not found");
SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << " not found");
} else {
subsystem->suspend();
}
@ -304,7 +304,7 @@ do_resume (const SGPropertyNode * arg)
SGSubsystem * subsystem = globals->get_subsystem(name);
if (subsystem == 0) {
result = false;
SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << "not found");
SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << " not found");
} else {
subsystem->resume();
}