Mercurial > hg > orthanc
comparison OrthancFramework/Sources/DicomNetworking/DicomStoreUserConnection.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 | 3b70a2e6a06c |
comparison
equal
deleted
inserted
replaced
4283:6b58ceed959e | 4284:756126cd2219 |
---|---|
225 } | 225 } |
226 | 226 |
227 // The association must be re-negotiated | 227 // The association must be re-negotiated |
228 if (association_->IsOpen()) | 228 if (association_->IsOpen()) |
229 { | 229 { |
230 LOG(INFO) << "Re-negotiating DICOM association with " | 230 CLOG(INFO, DICOM) << "Re-negotiating DICOM association with " |
231 << parameters_.GetRemoteModality().GetApplicationEntityTitle(); | 231 << parameters_.GetRemoteModality().GetApplicationEntityTitle(); |
232 | 232 |
233 if (proposedOriginalClasses_.find(std::make_pair(sopClassUid, transferSyntax)) != | 233 if (proposedOriginalClasses_.find(std::make_pair(sopClassUid, transferSyntax)) != |
234 proposedOriginalClasses_.end()) | 234 proposedOriginalClasses_.end()) |
235 { | 235 { |
236 LOG(INFO) << "The remote modality has already rejected SOP class UID \"" | 236 CLOG(INFO, DICOM) << "The remote modality has already rejected SOP class UID \"" |
237 << sopClassUid << "\" with transfer syntax \"" | 237 << sopClassUid << "\" with transfer syntax \"" |
238 << GetTransferSyntaxUid(transferSyntax) << "\", don't renegotiate"; | 238 << GetTransferSyntaxUid(transferSyntax) << "\", don't renegotiate"; |
239 return false; | 239 return false; |
240 } | 240 } |
241 } | 241 } |
242 | 242 |
243 association_->ClearPresentationContexts(); | 243 association_->ClearPresentationContexts(); |