From b2f3cae76d99c86f01ff68dc41070461289c4337 Mon Sep 17 00:00:00 2001 From: Typicode Date: Wed, 14 Oct 2015 08:32:26 +0200 Subject: [PATCH] Enhance output --- src/cli/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/run.js b/src/cli/run.js index 25d8b01..15fadbe 100644 --- a/src/cli/run.js +++ b/src/cli/run.js @@ -120,7 +120,7 @@ module.exports = function (argv) { var filename = 'db-' + Date.now() + '.json' var file = path.join(argv.snapshots, filename) app.db.saveSync(file) - console.log(' Saved snapshot to ' + file + '\n') + console.log(' Saved snapshot to ' + path.relative(process.cwd(), file) + '\n') } })