1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-18 09:35:20 +02:00
joplin/packages/lib/services/synchronizer/syncDebugLog.ts

14 lines
419 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.
import Logger, { TargetType } from '../../Logger';
import { homedir } from 'os';
const syncDebugLog = new Logger();
syncDebugLog.addTarget(TargetType.File, {
path: `${homedir()}/synclog.txt`,
});
export default syncDebugLog;