Fixed missed conflicts - use constants.logVerbosity instead

This commit is contained in:
Stanley Cheung 2017-05-17 23:15:45 -07:00
parent d6e2e59b14
commit a336bda983

View File

@ -782,7 +782,7 @@ Server.prototype.addService = function(service, implementation) {
};
var logAddProtoServiceDeprecationOnce = _.once(function() {
common.log(grpc.logVerbosity.INFO,
common.log(constants.logVerbosity.INFO,
'Server#addProtoService is deprecated. Use addService instead');
});