1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-08 06:06:40 +02:00

CS fixes/add to README, refs #427

This commit is contained in:
Jordi Boggiano
2014-09-29 22:12:28 +01:00
parent d8fe9021b4
commit 7eebdae56b
2 changed files with 3 additions and 2 deletions

View File

@@ -122,6 +122,7 @@ Handlers
- _HipChatHandler_: Logs records to a [HipChat](http://hipchat.com) chat room using its API.
- _FlowdockHandler_: Logs records to a [Flowdock](https://www.flowdock.com/) account.
- _SlackHandler_: Logs records to a [Slack](https://www.slack.com/) account.
- _MandrillHandler_: Sends emails via the Mandrill API using a [`Swift_Message`](http://swiftmailer.org/) instance.
### Log specific servers and networked logging

View File

@@ -62,6 +62,6 @@ class MandrillHandler extends MailHandler
)));
curl_exec($ch);
curl_close ($ch);
curl_close($ch);
}
}
}