Skip to content

Commit c5f8167

Browse files
authored
added miniloggers doc (#3)
1 parent 2c9d99b commit c5f8167

File tree

5 files changed

+24
-1
lines changed

5 files changed

+24
-1
lines changed

Manifest.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,12 @@ version = "1.0.3"
192192
deps = ["Artifacts", "Libdl"]
193193
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"
194194

195+
[[MiniLoggers]]
196+
deps = ["Dates", "Logging", "Markdown"]
197+
git-tree-sha1 = "fc62e0ea4c194d519201e60ece4f0936028a604d"
198+
uuid = "93f3dd0f-005d-4452-894a-a31841fa4078"
199+
version = "0.4.1"
200+
195201
[[Mmap]]
196202
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
197203

Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Logging2 = "18cd0bd4-3461-488c-9dae-1a490b172243"
1010
LoggingExtras = "e6f89c97-d47a-5376-807f-9c37f3926c36"
1111
LoggingFormats = "98105f81-4425-4516-93fd-1664fb551ab6"
1212
LokiLogger = "51d429d1-9683-4c89-86d7-889f440454ef"
13+
MiniLoggers = "93f3dd0f-005d-4452-894a-a31841fa4078"
1314
NodeJS_16_jll = "a4b94fbf-73f5-58ff-888d-48a8396e17f6"
1415
ProgressLogging = "33c8b6b6-d38a-422a-b730-caa89a2f386c"
1516
SyslogLogging = "0c4b0c42-68ec-11ea-3bc9-e7fb6e00ea0f"

make.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
using Documenter
22
import NodeJS_16_jll
33
import LoggingExtras, LokiLogger, ProgressLogging, TerminalLoggers,
4-
SyslogLogging, LogRoller, LogCompose, Logging, Logging2, LoggingFormats
4+
SyslogLogging, LogRoller, LogCompose, Logging, Logging2, LoggingFormats,
5+
MiniLoggers
56

67
# "Backport" of JuliaLang/julia#40979
78
@eval Logging begin
@@ -76,6 +77,7 @@ makedocs(
7677
"reference/progresslogging.md",
7778
"reference/sysloglogging.md",
7879
"reference/terminalloggers.md",
80+
"reference/miniloggers.md",
7981
],
8082
# "Background and discussion" => [
8183
# ],

src/package-overview.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,12 @@ The LogCompose package provides declarative logger configuration and an associat
155155
file format.
156156

157157
See the [LogCompose API reference](@ref LogCompose.jl) for details.
158+
159+
## [MiniLoggers.jl](@id miniloggers-overview)
160+
161+
[![](https://img.shields.io/badge/-code%20repository-blue)](https://github.com/JuliaLogging/MiniLoggers.jl)
162+
[![](https://img.shields.io/badge/-external%20docs-blue)](https://github.com/JuliaLogging/MiniLoggers.jl/blob/master/README.md)
163+
164+
The MiniLoggers package provides Julia logger with minimal setup and simple yet powerful format of logging strings. It allows to build custom and compact logging, which supports coloring, output to external files, timestamps and many more.
165+
166+
See the [MiniLoggers API reference](@ref MiniLoggers.jl) for details.

src/reference/miniloggers.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# MiniLoggers.jl
2+
3+
```@autodocs
4+
Modules = [MiniLoggers]
5+
```

0 commit comments

Comments
 (0)