File tree Expand file tree Collapse file tree
utils/inputValidation/__tests__ Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import { splitsSyncTaskFactory } from './syncTasks/splitsSyncTask' ;
22import { segmentsSyncTaskFactory } from './syncTasks/segmentsSyncTask' ;
33import { IPollingManager , ISegmentsSyncTask , ISplitsSyncTask } from './types' ;
4- import { POLLING_START , POLLING_STOP } from '../../logger/constants' ;
4+ import { LOG_PREFIX_SYNC_POLLING , POLLING_START , POLLING_STOP } from '../../logger/constants' ;
55import { ISdkFactoryContextSync } from '../../sdkFactory/types' ;
66
77/**
@@ -25,6 +25,8 @@ export function pollingManagerSSFactory(
2525 // Start periodic fetching (polling)
2626 start ( ) {
2727 log . info ( POLLING_START ) ;
28+ log . debug ( LOG_PREFIX_SYNC_POLLING + `Definitions will be refreshed each ${ settings . scheduler . featuresRefreshRate } millis` ) ;
29+ log . debug ( LOG_PREFIX_SYNC_POLLING + `Segments will be refreshed each ${ settings . scheduler . segmentsRefreshRate } millis` ) ;
2830
2931 const startingUp = splitsSyncTask . start ( ) ;
3032 if ( startingUp ) {
File renamed without changes.
You can’t perform that action at this time.
0 commit comments