const globalStateUtils = {
    clearAll: function clearAll() {
        log('globalStateUtils.clearAll: enter');

        localStorage.clear();
        // clear all local storage for this app

        log('globalStateUtils.clearAll: leave');
    }
};