Revert globalization of assert() messages

This commit is contained in:
Miroslav Bajtoš 2016-08-12 13:33:14 +02:00
parent 21bdb28d37
commit 80a0b7d7ad
1 changed files with 2 additions and 2 deletions

View File

@ -227,8 +227,8 @@ Registry.prototype.configureModel = function(ModelCtor, config) {
// configuration, so that the datasource picks up updated relations // configuration, so that the datasource picks up updated relations
if (config.dataSource) { if (config.dataSource) {
assert(config.dataSource instanceof DataSource, assert(config.dataSource instanceof DataSource,
g.f('Cannot configure %s: {{config.dataSource}} must be an instance ' + 'Cannot configure ' + ModelCtor.modelName +
'of {{DataSource}}', ModelCtor.modelName)); ': config.dataSource must be an instance of DataSource');
ModelCtor.attachTo(config.dataSource); ModelCtor.attachTo(config.dataSource);
debug('Attached model `%s` to dataSource `%s`', debug('Attached model `%s` to dataSource `%s`',
modelName, config.dataSource.name); modelName, config.dataSource.name);