From 75ded6d7bb4defcb5a019e3555696bff0cff40fc Mon Sep 17 00:00:00 2001 From: Michael Prager Date: Thu, 14 Jan 2010 13:33:33 +0100 Subject: [PATCH 1/1] added more detailed error output when failing to access calendar service object --- comingNext/index.html | 2 +- comingNextB/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/comingNext/index.html b/comingNext/index.html index 5730519..720ce3d 100644 --- a/comingNext/index.html +++ b/comingNext/index.html @@ -664,7 +664,7 @@ function init() // call calendar service calendarService = device.getServiceObject("Service.Calendar", "IDataSource"); } catch(e) { - error('loading Calendar service'); + error('loading Calendar service: ' + e + ', line ' + e.line); return; } diff --git a/comingNextB/index.html b/comingNextB/index.html index 35feef0..e743a65 100644 --- a/comingNextB/index.html +++ b/comingNextB/index.html @@ -664,7 +664,7 @@ function init() // call calendar service calendarService = device.getServiceObject("Service.Calendar", "IDataSource"); } catch(e) { - error('loading Calendar service'); + error('loading Calendar service: ' + e + ', line ' + e.line); return; } -- 2.39.2