Skip to content

Commit abca8be

Browse files
committed
chore: update debug prefix
1 parent 06a9e27 commit abca8be

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const defaultOptions = require('./default-options')
1919
const defaultDatastore = require('./default-datastore')
2020
const ERRORS = require('./errors')
2121

22-
const log = debug('repo')
22+
const log = debug('ipfs:repo')
2323

2424
const noLimit = Number.MAX_SAFE_INTEGER
2525
const AUTO_MIGRATE_CONFIG_KEY = 'repoAutoMigrate'

src/lock-memory.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const errors = require('./errors')
44
const debug = require('debug')
55

6-
const log = debug('repo:lock')
6+
const log = debug('ipfs:repo:lock')
77

88
const lockFile = 'repo.lock'
99

src/lock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const path = require('path')
55
const debug = require('debug')
66
const { lock } = require('proper-lockfile')
77

8-
const log = debug('repo:lock')
8+
const log = debug('ipfs:repo:lock')
99
const lockFile = 'repo.lock'
1010

1111
/**

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const { Buffer } = require('buffer')
44
const Key = require('interface-datastore').Key
55
const debug = require('debug')
6-
const log = debug('repo:version')
6+
const log = debug('ipfs:repo:version')
77

88
const versionKey = new Key('version')
99

0 commit comments

Comments
 (0)