Logging: clarify saveState log

This commit is contained in:
Daniel Ternyak 2017-07-05 17:56:46 -05:00
parent dc3c1985b5
commit e873ffc994
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ export const saveState = (state: Object) => {
const serializedState = JSON.stringify(state);
localStorage.setItem(REDUX_STATE, serializedState);
} catch (err) {
console.warn(' Warning: corrupted local storage');
console.warn(' Warning: failed to set to local storage', state);
}
};