How to use the @nationalbankbelgium/stark-core.StarkLoggingActionTypes.LOG_MESSAGE function in @nationalbankbelgium/stark-core

To help you get started, we’ve selected a few @nationalbankbelgium/stark-core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github NationalBankBelgium / stark / starter / src / app / app.module.ts View on Github external
export function logger(reducer: ActionReducer): any {
	// default, no options
	return storeLogger({
		filter: {
			blacklist: [StarkLoggingActionTypes.LOG_MESSAGE]
		}
	})(reducer);
}
github NationalBankBelgium / stark / showcase / src / app / app.module.ts View on Github external
export function logger(reducer: ActionReducer): any {
	// default, no options
	return storeLogger({
		filter: {
			blacklist: [StarkLoggingActionTypes.LOG_MESSAGE]
		}
	})(reducer);
}