mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-20 17:39:27 +01:00
Make INFO a bit less verbose when connecting.
This commit is contained in:
parent
661a32d1a9
commit
b33dadea9e
@ -157,7 +157,7 @@ class Owner(callbacks.Plugin):
|
||||
conf.supybot.networks.get(network).servers.append(serverS)
|
||||
assert conf.supybot.networks.get(network).servers(), \
|
||||
'No servers are set for the %s network.' % network
|
||||
self.log.info('Creating new Irc for %s.', network)
|
||||
self.log.debug('Creating new Irc for %s.', network)
|
||||
newIrc = irclib.Irc(network)
|
||||
for irc in world.ircs:
|
||||
if irc != newIrc:
|
||||
@ -167,7 +167,7 @@ class Owner(callbacks.Plugin):
|
||||
return newIrc
|
||||
|
||||
def _loadPlugins(self, irc):
|
||||
self.log.info('Loading plugins (connecting to %s).', irc.network)
|
||||
self.log.debug('Loading plugins (connecting to %s).', irc.network)
|
||||
alwaysLoadImportant = conf.supybot.plugins.alwaysLoadImportant()
|
||||
important = conf.supybot.commands.defaultPlugins.importantPlugins()
|
||||
for (name, value) in conf.supybot.plugins.getValues(fullNames=False):
|
||||
|
@ -1168,7 +1168,7 @@ class Irc(IrcCommandDispatcher, log.Firewalled):
|
||||
return
|
||||
caps = msg.args[2].split()
|
||||
assert caps, 'Empty list of capabilities'
|
||||
log.info('%s: Server acknowledged capabilities: %L',
|
||||
log.debug('%s: Server acknowledged capabilities: %L',
|
||||
self.network, caps)
|
||||
self.state.capabilities_ack.update(caps)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user