comparison OrthancServer/Plugins/Samples/Common/OrthancPluginCppWrapper.cpp @ 4445:5e6b5fef92f8

fix LOG() in OrthancPluginCppWrapper.cpp
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 13 Jan 2021 10:32:34 +0100
parents 11ea0a05115b
children 365f51fae413
comparison
equal deleted inserted replaced
4444:11ea0a05115b 4445:5e6b5fef92f8
335 { 335 {
336 return true; 336 return true;
337 } 337 }
338 else 338 else
339 { 339 {
340 LOG(ERROR) << "Cannot parse JSON: " << err; 340 LogError("Cannot parse JSON: " + std::string(err));
341 return false; 341 return false;
342 } 342 }
343 #endif 343 #endif
344 } 344 }
345 345