diff --git a/src/finiteVolume/cfdTools/general/fvOptions/fvOption.C b/src/finiteVolume/cfdTools/general/fvOptions/fvOption.C index df2d261f4ddc609676737058c30e65f4442b5d30..7f405c903b5e88a3aaa69ec99725980a178e93f1 100644 --- a/src/finiteVolume/cfdTools/general/fvOptions/fvOption.C +++ b/src/finiteVolume/cfdTools/general/fvOptions/fvOption.C @@ -72,7 +72,10 @@ Foam::fv::option::option active_(dict_.getOrDefault("active", true)), log(true) { - Log << incrIndent << indent << "Source: " << name_ << endl << decrIndent; + Log << incrIndent + << indent << "Source: " << name_ << endl + << indent << "State: " << (active_ ? "active" : "inactive") << endl + << decrIndent; }