11 lines
184 B
TypeScript
11 lines
184 B
TypeScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
import { init } from '@woocommerce/remote-logging';
|
||
|
|
||
|
export const initRemoteLogging = () => {
|
||
|
init( {
|
||
|
errorRateLimitMs: 60000, // 1 minute
|
||
|
} );
|
||
|
};
|