comparison Framework/Messages/ICallable.h @ 981:c20dbaab360c

Ability to cope with empty "Referenced SOP Instance UID" (dicom path (3006,0039)[i] / (0x3006, 0x0040)[0] / (0x3006, 0x0016)[0] / (0x0008, 0x1155)) + better logs + code formating
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 06 Sep 2019 09:38:18 +0200
parents 262a0244e9b2
children 3f6e5a38c88f
comparison
equal deleted inserted replaced
978:0e21ecafcc23 981:c20dbaab360c
90 LOG(TRACE) << " recorded fingerprint = " << observerFingerprint_ << 90 LOG(TRACE) << " recorded fingerprint = " << observerFingerprint_ <<
91 " current fingerprint = " << currentFingerprint; 91 " current fingerprint = " << currentFingerprint;
92 } 92 }
93 else 93 else
94 { 94 {
95 LOG(TRACE) << "The recorded fingerprint is " << observerFingerprint_ << " and the current fingerprint is " << currentFingerprint << " -- callable will be called."; 95 LOG(TRACE) << "The recorded fingerprint is " << observerFingerprint_
96 << " and the current fingerprint is " << currentFingerprint
97 << " -- callable will be called.";
96 (observer_.*function_) (message); 98 (observer_.*function_) (message);
97 } 99 }
98 } 100 }
99 101
100 virtual void Apply(const IMessage& message) 102 virtual void Apply(const IMessage& message)