Skip to content

Commit

Permalink
Merge pull request #97 from biggins/patch-1
Browse files Browse the repository at this point in the history
Fixing Bug in Delegate.safeTraceLogging
  • Loading branch information
mrtree1 committed Nov 18, 2014
2 parents ab64ce9 + bab2e4e commit d507fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/Delegate.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Delegate.safeTraceLogging = function(message) {
return;
}
try {
cordova.plugins.LocationManager.appendToDeviceLog(message);
cordova.plugins.locationManager.appendToDeviceLog(message);
} catch (e) {
console.error('Fail in safeTraceLogging()' + e.message, e);
}
Expand Down

0 comments on commit d507fd8

Please sign in to comment.