mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
Updated inconistent frontend debug statements
- Fixed debug statements had wrong/inconsistent debug statement path after refactor
This commit is contained in:
parent
f78996d063
commit
72679aefb9
4 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
const fs = require('fs-extra'),
|
||||
Promise = require('bluebird'),
|
||||
path = require('path'),
|
||||
debug = require('ghost-ignition').debug('services:settings:ensure-settings'),
|
||||
debug = require('ghost-ignition').debug('frontend:services:settings:ensure-settings'),
|
||||
common = require('../../../server/lib/common'),
|
||||
config = require('../../../server/config');
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
const fs = require('fs-extra'),
|
||||
path = require('path'),
|
||||
debug = require('ghost-ignition').debug('services:settings:settings-loader'),
|
||||
debug = require('ghost-ignition').debug('frontend:services:settings:settings-loader'),
|
||||
common = require('../../../server/lib/common'),
|
||||
config = require('../../../server/config'),
|
||||
yamlParser = require('./yaml-parser'),
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
const _ = require('lodash');
|
||||
const debug = require('ghost-ignition').debug('services:settings:validate');
|
||||
const debug = require('ghost-ignition').debug('frontend:services:settings:validate');
|
||||
const common = require('../../../server/lib/common');
|
||||
const themeService = require('../themes');
|
||||
const _private = {};
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
const yaml = require('js-yaml'),
|
||||
debug = require('ghost-ignition').debug('services:settings:yaml-parser'),
|
||||
debug = require('ghost-ignition').debug('frontend:services:settings:yaml-parser'),
|
||||
common = require('../../../server/lib/common');
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue