comparison Plugins/Engine/PluginsManager.cpp @ 1672:4c5a85c3ff43 db-changes

sample database plugin now working
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 02 Oct 2015 12:20:49 +0200
parents 939b921b2c81
children b1291df2f780
comparison
equal deleted inserted replaced
1671:2f2e2ec17bc4 1672:4c5a85c3ff43
189 } 189 }
190 } 190 }
191 catch (OrthancException& e) 191 catch (OrthancException& e)
192 { 192 {
193 // This service provider has failed 193 // This service provider has failed
194 LOG(ERROR) << "Exception while invoking a plugin service: " << e.What(); 194 LOG(ERROR) << "Exception while invoking plugin service " << service << ": " << e.What();
195 return static_cast<OrthancPluginErrorCode>(e.GetErrorCode()); 195 return static_cast<OrthancPluginErrorCode>(e.GetErrorCode());
196 } 196 }
197 } 197 }
198 198
199 LOG(ERROR) << "Plugin invoking unknown service: " << service; 199 LOG(ERROR) << "Plugin invoking unknown service: " << service;