summaryrefslogtreecommitdiffstats
path: root/afm-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js
diff options
context:
space:
mode:
Diffstat (limited to 'afm-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js')
-rw-r--r--afm-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/afm-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js b/afm-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js
index c4a086e..4d7aed6 100644
--- a/afm-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js
+++ b/afm-client/app/Frontend/widgets/Notifications/TokenRefreshSvc.js
@@ -34,14 +34,14 @@
// scope module is load statically before any route is cativated
angular.module('TokenRefresh', ['AppConfig', 'ModalNotification'])
- .directive ('tokenRefresh', function($window, $timeout, $location, Notification, AppConfig, AppCall) {
+ .directive ('tokenRefresh', function($log, $window, $timeout, $location, Notification, AppConfig, AppCall) {
function mymethods(scope, elem, attrs) {
scope.logged=undefined; // neither thu neither false
$window.onbeforeunload = function () {
- AppCall.get ("token", "reset", {/*query*/}, function () {
- console.log("OPA Exit Requested");
+ AppCall.get ("token", "reset", {/*query*/}, function () {
+ $log.log("OPA exit");
});
};