1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Chore: Move Logger from lib to utils package

This commit is contained in:
Laurent Cozic
2023-07-27 16:05:56 +01:00
parent a0ec928fca
commit 16c87c36da
124 changed files with 154 additions and 137 deletions

View File

@ -1,7 +1,7 @@
/* eslint-disable require-atomic-updates */
import BaseApplication from '../BaseApplication';
import BaseModel from '../BaseModel';
import Logger, { TargetType, LoggerWrapper, LogLevel } from '../Logger';
import Logger, { TargetType, LoggerWrapper, LogLevel } from '@joplin/utils/Logger';
import Setting from '../models/Setting';
import BaseService from '../services/BaseService';
import FsDriverNode from '../fs-driver-node';