From e91aaef1cefcfa282b744a7defcc0f95cc63651f Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Wed, 11 Nov 2015 12:51:13 +0000 Subject: [PATCH] ENH: objectRegistry: print type when debugging --- src/OpenFOAM/db/objectRegistry/objectRegistry.C | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/OpenFOAM/db/objectRegistry/objectRegistry.C b/src/OpenFOAM/db/objectRegistry/objectRegistry.C index 4903ca4e28..f2420e13d1 100644 --- a/src/OpenFOAM/db/objectRegistry/objectRegistry.C +++ b/src/OpenFOAM/db/objectRegistry/objectRegistry.C @@ -3,7 +3,7 @@ \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation - \\/ M anipulation | + \\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -222,6 +222,7 @@ bool Foam::objectRegistry::checkIn(regIOobject& io) const { Pout<< "objectRegistry::checkIn(regIOobject&) : " << name() << " : checking in " << io.name() + << " of type " << io.type() << endl; } @@ -354,6 +355,7 @@ bool Foam::objectRegistry::writeObject Pout<< "objectRegistry::write() : " << name() << " : Considering writing object " << iter.key() + << " of type " << iter()->type() << " with writeOpt " << iter()->writeOpt() << " to file " << iter()->objectPath() << endl; -- GitLab