diff --git a/lib/frame.js b/lib/frame.js index 6d7df56..5ed6e30 100644 --- a/lib/frame.js +++ b/lib/frame.js @@ -137,7 +137,7 @@ catch (e){ // we are unable to read the location due to SOP // therefore we also can not intercept anything. - warning("NOT intercepting window due to SOP", window); + notice("NOT intercepting window due to SOP", window); return false; } const wrappedWindow = wrappedTry; diff --git a/lib/main.js b/lib/main.js index 3c39f5c..2809271 100644 --- a/lib/main.js +++ b/lib/main.js @@ -111,7 +111,7 @@ logging.message("Initialized settings by dynamic content script."); } else { - logging.error("Dynamic content script was too late to provide settings."); + logging.warning("Dynamic content script was too late to provide settings."); } } else { diff --git a/lib/settings.js b/lib/settings.js index c3f9760..9e77da4 100644 --- a/lib/settings.js +++ b/lib/settings.js @@ -139,7 +139,7 @@ promise.then(function(){ logging.verbose("New value stored for %s:", name, newValue); }, function(err){ - logging.warning("Unable to store new value for %s:", name, newValue, err); + logging.error("Unable to store new value for %s:", name, newValue, err); }); return promise; } diff --git a/lib/settingsMigration.js b/lib/settingsMigration.js index 4ec0213..e2167d7 100644 --- a/lib/settingsMigration.js +++ b/lib/settingsMigration.js @@ -155,7 +155,7 @@ }); } else { - logging.warning("Unable to migrate storage."); + logging.error("Unable to migrate storage."); break; } } diff --git a/releaseNotes.txt b/releaseNotes.txt index d7859a6..1e40b36 100644 --- a/releaseNotes.txt +++ b/releaseNotes.txt @@ -1,6 +1,6 @@ Version 0.5.14: changes: - - + - reevaluated logging message levels new features: -