3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-11-23 19:19:31 +01:00

relay: more verbosity in TS-related link errors

This commit is contained in:
James Lu 2017-02-21 21:13:51 -08:00
parent 84d62fc540
commit 02faa3fcb6

View File

@ -1744,9 +1744,9 @@ def link(irc, source, args):
if (our_ts < their_ts) and irc.protoname != 'clientbot':
log.debug('(%s) relay: Blocking link request %s%s -> %s%s due to bad TS (%s < %s)', irc.name,
irc.name, localchan, remotenet, channel, our_ts, their_ts)
irc.error("the channel creation date (TS) on %s is lower than the target "
"channel's; refusing to link. You should clear the local channel %s first "
"before linking, or use a different local channel." % (localchan, localchan))
irc.error("The channel creation date (TS) on %s (%s) is lower than the target "
"channel's (%s); refusing to link. You should clear the local channel %s first "
"before linking, or use a different local channel." % (localchan, our_ts, their_ts, localchan))
return
entry['links'].add((irc.name, localchan))