comparison OrthancServer/Internals/FindScp.cpp @ 2115:a657f7772e69

Handling of private tags/creators in the "Dictionary" configuration option
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 31 Oct 2016 15:23:32 +0100
parents 8e67325eaa3f
children b9bd52c72ba2
comparison
equal deleted inserted replaced
2114:e4f8e377782f 2115:a657f7772e69
169 DcmSequenceOfItems& sequence = dynamic_cast<DcmSequenceOfItems&>(*element); 169 DcmSequenceOfItems& sequence = dynamic_cast<DcmSequenceOfItems&>(*element);
170 if (sequence.card() != 0) 170 if (sequence.card() != 0)
171 { 171 {
172 LOG(WARNING) << "Orthanc only supports sequence matching on worklists, " 172 LOG(WARNING) << "Orthanc only supports sequence matching on worklists, "
173 << "ignoring C-FIND SCU constraint on tag (" << tag.Format() 173 << "ignoring C-FIND SCU constraint on tag (" << tag.Format()
174 << ") " << FromDcmtkBridge::GetName(tag); 174 << ") " << FromDcmtkBridge::GetTagName(*element);
175 } 175 }
176 176
177 sequencesToReturn.push_back(tag); 177 sequencesToReturn.push_back(tag);
178 } 178 }
179 } 179 }