-rw-r--r-- | src/eyefiservice.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/eyefiservice.cc b/src/eyefiservice.cc index 5cbc396..fb2a90d 100644 --- a/src/eyefiservice.cc +++ b/src/eyefiservice.cc | |||
@@ -42,7 +42,7 @@ static bool detached_child() { | |||
42 | int eyefiService::StartSession( | 42 | int eyefiService::StartSession( |
43 | std::string macaddress,std::string cnonce, | 43 | std::string macaddress,std::string cnonce, |
44 | int transfermode,long transfermodetimestamp, | 44 | int transfermode,long transfermodetimestamp, |
45 | struct rns__StartSessionResponse &r ) { | 45 | struct rns__StartSessionResponse &r ) try { |
46 | #ifndef NDEBUG | 46 | #ifndef NDEBUG |
47 | syslog(LOG_DEBUG, | 47 | syslog(LOG_DEBUG, |
48 | "StartSession request from %s with cnonce=%s, transfermode=%d, transfermodetimestamp=%ld", | 48 | "StartSession request from %s with cnonce=%s, transfermode=%d, transfermodetimestamp=%ld", |
@@ -68,6 +68,8 @@ int eyefiService::StartSession( | |||
68 | } | 68 | } |
69 | } | 69 | } |
70 | return SOAP_OK; | 70 | return SOAP_OK; |
71 | }catch(std::runtime_error& e) { | ||
72 | syslog(LOG_ERR,"error while processing StartSession: %s",e.what()); | ||
71 | } | 73 | } |
72 | 74 | ||
73 | int eyefiService::GetPhotoStatus( | 75 | int eyefiService::GetPhotoStatus( |