Skip to content

Commit

Permalink
[nop] Update community appender docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Aug 28, 2023
1 parent 4440a96 commit 84970b8
Show file tree
Hide file tree
Showing 15 changed files with 27 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
(ns taoensso.timbre.appenders.community.android-logcat
(ns ^:no-doc taoensso.timbre.appenders.community.android-logcat
;; `^:no-doc` needed to prevent broken cljdoc build
"Android LogCat appender. Requires Android runtime."
{:author "Adam Clements (@AdamClements)"}
(:require
Expand Down
7 changes: 4 additions & 3 deletions deploy/src/taoensso/timbre/appenders/community/newrelic.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
(ns taoensso.timbre.appenders.community.newrelic
"New Relic appender. Requires an appropriate New Relic jar,
Ref. https://goo.gl/3Nv0QX."
(ns ^:no-doc taoensso.timbre.appenders.community.newrelic
;; `^:no-doc` needed to prevent broken cljdoc build
"New Relic appender.
Requires <https://github.com/newrelic/newrelic-java-agent>."
{:author "Camilo Polymeris (@polymeris)"}
(:import [com.newrelic.api.agent NewRelic]))

Expand Down
6 changes: 4 additions & 2 deletions deploy/src/taoensso/timbre/appenders/community/zmq.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
(ns taoensso.timbre.appenders.community.zmq
"ØMQ appender. Requires https://github.com/zeromq/cljzmq."
(ns ^:no-doc taoensso.timbre.appenders.community.zmq
;; `^:no-doc` needed to prevent broken cljdoc build
"ØMQ appender.
Requires <https://github.com/zeromq/cljzmq>."
{:author "Angus Fletcher (@angusiguess)"}
(:require
[taoensso.encore :as enc]
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/timbre/appenders/carmine.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(ns taoensso.timbre.appenders.carmine
"Carmine (Redis) appender.
Requires https://github.com/ptaoussanis/carmine."
Requires <https://github.com/taoensso/carmine>."
{:author "Peter Taoussanis (@ptaoussanis)"}
(:require
[taoensso.encore :as enc :refer [have have?]]
Expand Down
3 changes: 2 additions & 1 deletion src/taoensso/timbre/appenders/community/congomongo.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(ns taoensso.timbre.appenders.community.congomongo
"MongoDB appender. Requires https://github.com/aboekhoff/congomongo."
"MongoDB appender.
Requires <https://github.com/congomongo/congomongo>."
{:author "Emlyn Corrin (@emlyn)"}
(:require [somnium.congomongo :as mongo]
[taoensso.timbre :as timbre]
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/timbre/appenders/community/franzy.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(ns taoensso.timbre.appenders.community.franzy
"Franzy (Kafka) appender.
Requires Franzy (https://github.com/ymilky/franzy."
Requires <https://github.com/ymilky/franzy>."
{:author "Isaac Zeng (@gfZeng)"}
(:require
[franzy.serialization.serializers :as serializers]
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/timbre/appenders/community/node_spit.cljs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(ns taoensso.timbre.appenders.community.node-spit
"Requires https://github.com/pkpkpk/cljs-node-io."
"Requires <https://github.com/pkpkpk/cljs-node-io>."
{:author "Mason Vines (@mavines)"}
(:require
[taoensso.encore :as enc]
Expand Down
4 changes: 2 additions & 2 deletions src/taoensso/timbre/appenders/community/postgresql.clj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
(ns taoensso.timbre.appenders.community.postgresql
"JDBC PostgreSQL database appender.
Requires https://github.com/clojure/java.jdbc,
https://github.com/swaldman/c3p0."
Requires <https://github.com/clojure/java.jdbc>,
<https://github.com/swaldman/c3p0>."
{:author "Yue Liu (@yuliu-mdsol)"}
(:require
[taoensso.timbre :as timbre]
Expand Down
1 change: 0 additions & 1 deletion src/taoensso/timbre/appenders/community/rolling.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
(ns taoensso.timbre.appenders.community.rolling
"Rolling file appender."
{:author "Unknown - please let me know?"}
(:require
[clojure.java.io :as io]
[taoensso.encore :as enc]
Expand Down
3 changes: 2 additions & 1 deletion src/taoensso/timbre/appenders/community/sentry.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(ns taoensso.timbre.appenders.community.sentry
"Sentry appender. Requires https://github.com/sethtrain/raven-clj."
"Sentry appender.
Requires <https://github.com/sethtrain/raven-clj>."
{:author "Samuel Otter (@samuelotter)"}
(:require
[taoensso.encore :as enc]
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/timbre/appenders/community/server_socket.clj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(ns taoensso.timbre.appenders.community.server-socket
"TCP socket appender.
Requires https://github.com/technomancy/server-socket."
Requires <https://github.com/technomancy/server-socket>."
{:author "Emlyn Corrin (@emlyn)"}
(:require
[taoensso.encore :as enc]
Expand Down
3 changes: 2 additions & 1 deletion src/taoensso/timbre/appenders/community/slack.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(ns taoensso.timbre.appenders.community.slack
"Slack appender. Requires https://github.com/julienXX/clj-slack."
"Slack appender.
Requires <https://github.com/julienXX/clj-slack>."
{:author "Simon Belak (@sbelak)"}
(:require
[taoensso.timbre :as timbre]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(ns taoensso.timbre.appenders.community.syslog-appender
"Requires https://github.com/java-native-access/jna"
"Requires <https://github.com/java-native-access/jna>."
{:author "Audrius Molis @audriu"
:inspired-by "https://github.com/joshrotenberg/brolog"}
(:require
Expand Down
3 changes: 2 additions & 1 deletion src/taoensso/timbre/appenders/example.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
PRs for new *dependency-free* community appenders welcome!
NB See the `timbre/*config*` docstring for up-to-date info
Timbre's appender API."
Timbre's appender API.
Requires <https://github.com/<TODO>/<TODO>>."
{:author "TODO Your Name (@your-github-username)"}
(:require
[taoensso.encore :as enc]
Expand Down
3 changes: 2 additions & 1 deletion src/taoensso/timbre/appenders/postal.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
(ns taoensso.timbre.appenders.postal
"Email (Postal) appender. Requires https://github.com/drewr/postal."
"Email (Postal) appender.
Requires <https://github.com/drewr/postal>."
{:author "Peter Taoussanis (@ptaoussanis)"}
(:require
[clojure.string :as str]
Expand Down

0 comments on commit 84970b8

Please sign in to comment.