comparison OrthancFramework/Sources/DicomNetworking/DicomControlUserConnection.cpp @ 4284:756126cd2219

moving all logs from DicomNetworking folder into the "dicom" category
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Nov 2020 15:01:47 +0100
parents d2f79a475b51
children 544120b34c09
comparison
equal deleted inserted replaced
4283:6b58ceed959e 4284:756126cd2219
164 for (size_t i = 0; i < query.GetSize(); i++) 164 for (size_t i = 0; i < query.GetSize(); i++)
165 { 165 {
166 const DicomTag& tag = query.GetElement(i).GetTag(); 166 const DicomTag& tag = query.GetElement(i).GetTag();
167 if (allowedTags.find(tag) == allowedTags.end()) 167 if (allowedTags.find(tag) == allowedTags.end())
168 { 168 {
169 LOG(WARNING) << "Tag not allowed for this C-Find level, will be ignored: " << tag; 169 CLOG(WARNING, DICOM) << "Tag not allowed for this C-Find level, will be ignored: " << tag;
170 } 170 }
171 else 171 else
172 { 172 {
173 fixedQuery.SetValue(tag, query.GetElement(i).GetValue()); 173 fixedQuery.SetValue(tag, query.GetElement(i).GetValue());
174 } 174 }