Skip to content
Snippets Groups Projects
Commit bda2936e authored by Andrew Heather's avatar Andrew Heather
Browse files

moved warning messages to within debug scope

parent 44e5bf5f
Branches
Tags
No related merge requests found
......@@ -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;
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment