mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
moved warning messages to within debug scope
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user