moved warning messages to within debug scope

This commit is contained in:
andy
2009-07-10 13:38:11 +01:00
parent 44e5bf5fac
commit bda2936ee7
3 changed files with 18 additions and 9 deletions

View File

@ -42,9 +42,12 @@ Foam::C::C()
:
solid(2010, 710, 0.04, 0.0, 1.0)
{
WarningIn("C::C()")
<< "Properties of graphite need to be checked!!!"
<< endl;
if (debug)
{
WarningIn("C::C()")
<< "Properties of graphite need to be checked!!!"
<< endl;
}
}

View File

@ -42,9 +42,12 @@ Foam::CaCO3::CaCO3()
:
solid(2710, 850, 1.3, 0.0, 1.0)
{
WarningIn("CaCO3::CaCO3()")
<< "Properties of CaCO3 need to be checked!!!"
<< endl;
if (debug)
{
WarningIn("CaCO3::CaCO3()")
<< "Properties of CaCO3 need to be checked!!!"
<< endl;
}
}

View File

@ -42,9 +42,12 @@ Foam::ash::ash()
:
solid(2010, 710, 0.04, 0.0, 1.0)
{
WarningIn("ash::ash()")
<< "Properties of ash need to be checked!!!"
<< endl;
if (debug)
{
WarningIn("ash::ash()")
<< "Properties of ash need to be checked!!!"
<< endl;
}
}