mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
10 lines
312 B
TypeScript
10 lines
312 B
TypeScript
// The sync debug log can be used to view from a single file a sequence of sync
|
|
// related events. In particular, it logs notes and folders being saved, and the
|
|
// relevant sync operations. Enable it in app.ts
|
|
|
|
import Logger from '../../Logger';
|
|
|
|
const syncDebugLog = new Logger();
|
|
|
|
export default syncDebugLog;
|