1
0
Fork 0

src/Main/fg_commands.cxx: reduced extra-view diagnostics.

This commit is contained in:
Julian Smith 2021-08-06 00:16:58 +01:00
parent 281fe6d47d
commit d860a79901

View file

@ -376,7 +376,7 @@ do_view_cycle (const SGPropertyNode * arg, SGPropertyNode * root)
static bool
do_view_push (const SGPropertyNode * arg, SGPropertyNode * root)
{
SG_LOG(SG_GENERAL, SG_ALERT, "do_view_push() called");
SG_LOG(SG_GENERAL, SG_DEBUG, "do_view_push() called");
globals->get_viewmgr()->view_push();
return true;
}
@ -388,7 +388,7 @@ do_view_push (const SGPropertyNode * arg, SGPropertyNode * root)
static bool
do_view_clone (const SGPropertyNode * arg, SGPropertyNode * root)
{
SG_LOG(SG_GENERAL, SG_ALERT, "do_view_clone() called");
SG_LOG(SG_GENERAL, SG_DEBUG, "do_view_clone() called");
globals->get_viewmgr()->clone_current_view(arg);
return true;
}
@ -412,7 +412,7 @@ do_view_last_pair (const SGPropertyNode * arg, SGPropertyNode * root)
static bool
do_view_last_pair_double (const SGPropertyNode * arg, SGPropertyNode * root)
{
SG_LOG(SG_GENERAL, SG_ALERT, "do_view_last_pair_double() called");
SG_LOG(SG_GENERAL, SG_DEBUG, "do_view_last_pair_double() called");
globals->get_viewmgr()->clone_last_pair_double(arg);
return true;
}