From dfcf64fdc3db82ccbd6ecd8128f72a1a2657bd88 Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Thu, 27 Apr 2017 15:50:51 +0200 Subject: [PATCH] chore: change DEBUG namespace to loopback:mixin:computed --- README.md | 2 +- lib/computed.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c739613..76b4762 100644 --- a/README.md +++ b/README.md @@ -89,5 +89,5 @@ Run the tests in `test.js` Run with debugging output on: ```bash - DEBUG='loopback-ds-computed-mixin' npm test + DEBUG='loopback:mixin:computed' npm test ``` diff --git a/lib/computed.js b/lib/computed.js index 573a318..2f96922 100644 --- a/lib/computed.js +++ b/lib/computed.js @@ -1,4 +1,4 @@ -const debug = require('debug')('loopback-ds-computed-mixin') +const debug = require('debug')('loopback:mixin:computed') const _ = require('lodash') const Promise = require('bluebird')