removed deprecated createLogger and replaced with getLogger
This commit is contained in:
parent
5d8b102422
commit
c10a524aa8
29 changed files with 93 additions and 136 deletions
|
|
@ -2,7 +2,7 @@
|
|||
* Technical Indicators Service
|
||||
* Leverages @stock-bot/utils for calculations
|
||||
*/
|
||||
import { createLogger } from '@stock-bot/logger';
|
||||
import { getLogger } from '@stock-bot/logger';
|
||||
import {
|
||||
sma,
|
||||
ema,
|
||||
|
|
@ -10,7 +10,7 @@ import {
|
|||
macd
|
||||
} from '@stock-bot/utils';
|
||||
|
||||
const logger = createLogger('indicators-service');
|
||||
const logger = getLogger('indicators-service');
|
||||
|
||||
export interface IndicatorRequest {
|
||||
symbol: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue