mirror of
https://github.com/Seldaek/monolog.git
synced 2026-04-26 08:05:53 +03:00
[GH-ISSUE #325] IRC handler #110
Labels
No labels
Bug
Documentation
Feature
Needs Work
Support
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/monolog#110
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sagikazarmark on GitHub (Feb 19, 2014).
Original GitHub issue: https://github.com/Seldaek/monolog/issues/325
I just saw (and set up) that Travis CI can send messages about builds to an IRC channel. Wondering that monolog could do the same.
@sagikazarmark commented on GitHub (Feb 20, 2014):
I just realised that it is really a long blocking event, since the client has to wait until IRC server let's it in the channel. Maybe this idea is not as good as I thought earlier.
@Seldaek commented on GitHub (Feb 20, 2014):
Between the fact that IRC is not generally built for speed and that the protocol can be a bit complex, I'd rather not have this in monolog itself. It'd be better to have a third party service that keeps a connection open to the IRC server and that can be notified by monolog with a simple one-shot request, like the HipChatHandler and others do. That said I don't want to stop you, you could still build it as a third-party package that can be used together with monolog.
@sagikazarmark commented on GitHub (Feb 20, 2014):
I ended up with the same idea. ;)