This repository was archived by the owner on Oct 1, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
const YargsPromise = require ( 'yargs-promise' )
6
6
const yargs = require ( 'yargs' )
7
7
const process = require ( 'process' )
8
- const log = require ( 'debug' ) ( 'js-ipfs- repo-migrations:cli' )
8
+ const log = require ( 'debug' ) ( 'repo-migrations:cli' )
9
9
10
10
const commands = require ( './commands' )
11
11
@@ -57,7 +57,7 @@ async function main (args) {
57
57
if ( err . message || ( err . error && err . error . message ) ) {
58
58
print ( err . message || err . error . message )
59
59
} else {
60
- print ( 'Unknown error, please re-run the command with DEBUG=js-ipfs- repo-migrations:cli to see debug output' )
60
+ print ( 'Unknown error, please re-run the command with DEBUG=repo-migrations:cli to see debug output' )
61
61
}
62
62
63
63
exitCode = 1
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ const repoInit = require('./repo/init')
7
7
const isBrowser = require ( './option-node' )
8
8
const errors = require ( './errors' )
9
9
10
- const log = require ( 'debug' ) ( 'js-ipfs- repo-migrations:migrator' )
10
+ const log = require ( 'debug' ) ( 'repo-migrations:migrator' )
11
11
12
12
exports . getCurrentRepoVersion = repoVersion . getVersion
13
13
exports . errors = errors
Original file line number Diff line number Diff line change 1
1
'use strict'
2
2
3
3
const Datastore = require ( 'datastore-fs' )
4
- const log = require ( 'debug' ) ( 'js-ipfs- repo-migrations:repo:init' )
4
+ const log = require ( 'debug' ) ( 'repo-migrations:repo:init' )
5
5
6
6
const Key = require ( 'interface-datastore' ) . Key
7
7
Original file line number Diff line number Diff line change 2
2
3
3
const debug = require ( 'debug' )
4
4
5
- const log = debug ( 'js-ipfs- repo-migrations:repo_mem_lock' )
5
+ const log = debug ( 'repo-migrations:repo_mem_lock' )
6
6
7
7
const lockFile = 'repo.lock'
8
8
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const path = require('path')
4
4
const debug = require ( 'debug' )
5
5
const { lock } = require ( 'proper-lockfile' )
6
6
7
- const log = debug ( 'js-ipfs- repo-migrations:repo_fs_lock' )
7
+ const log = debug ( 'repo-migrations:repo_fs_lock' )
8
8
const lockFile = 'repo.lock'
9
9
10
10
/**
You can’t perform that action at this time.
0 commit comments