Fix message typo.

pull/3173/head
Jim Tittsler 10 years ago
parent 1f865843a2
commit 7476a370bf
  1. 2
      packages/rocketchat-ldap/server/loginHandler.js
  2. 2
      packages/rocketchat-logger/server.coffee
  3. 2
      server/stream/streamBroadcast.coffee

@ -126,7 +126,7 @@ Accounts.registerLoginHandler('ldap', function(loginRequest) {
};
}
logger.info('User does not exists, creating', username);
logger.info('User does not exist, creating', username);
// Create new user
var userObject = {
username: username

@ -108,7 +108,7 @@
self.warn "Method", method, "already exists"
if not self.defaultTypes[typeConfig.type]?
self.warn "Method type", typeConfig.type, "doest not exists"
self.warn "Method type", typeConfig.type, "does not exist"
self[method] = (args...) ->
self._log.call self,

@ -64,7 +64,7 @@ authorizeConnection = (connection) ->
authorizeConnection(connection);
when 'stream-not-exists'
logger.stream.error "Stream broadcast from:#{process.env.PORT} to:#{connection._stream.endpoint} with name #{streamName} does not exists".red
logger.stream.error "Stream broadcast from:#{process.env.PORT} to:#{connection._stream.endpoint} with name #{streamName} does not exist".red
logger.stream.debug " -> connection authorized".red, connection.broadcastAuth
logger.stream.debug " -> connection status".red, connection.status()
logger.stream.debug " -> arguments".red, eventName, args

Loading…
Cancel
Save