Skip to content

Commit 76bd89d

Browse files
authored
Rename LoggingZMQ to ZMQLoggers (#4)
1 parent 7740dfa commit 76bd89d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ JuliaMinCIVersion: '1'
2323
JuliaMinVersion: '1'
2424
License: MIT
2525
LicenseCopyrightHolders: Lucas Bex
26-
PackageName: LoggingZMQ
26+
PackageName: ZMQLoggers
2727
PackageOwner: JuliaLogging
2828
PackageUUID: e9bc4a15-d3b7-45db-a26a-813125f6ff30
2929
RunJuliaNightlyOnCI: false

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "LoggingZMQ"
1+
name = "ZMQLoggers"
22
uuid = "e9bc4a15-d3b7-45db-a26a-813125f6ff30"
33
authors = ["Cas Bex <[email protected]>"]
44
version = "0.1.0"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# LoggingZMQ
1+
# ZMQLoggers
22

3-
[![Test workflow status](https://github.com/JuliaLogging/LoggingZMQ.jl/actions/workflows/Test.yml/badge.svg?branch=main)](https://github.com/JuliaLogging/LoggingZMQ.jl/actions/workflows/Test.yml?query=branch%3Amain)
4-
[![Coverage](https://codecov.io/gh/JuliaLogging/LoggingZMQ.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaLogging/LoggingZMQ.jl)
3+
[![Test workflow status](https://github.com/JuliaLogging/ZMQLoggers.jl/actions/workflows/Test.yml/badge.svg?branch=main)](https://github.com/JuliaLogging/LoggingZMQ.jl/actions/workflows/Test.yml?query=branch%3Amain)
4+
[![Coverage](https://codecov.io/gh/JuliaLogging/ZMQLoggers.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaLogging/LoggingZMQ.jl)
55
[![BestieTemplate](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/JuliaBesties/BestieTemplate.jl/main/docs/src/assets/badge.json)](https://github.com/JuliaBesties/BestieTemplate.jl)
66

77
This package provides a logger that writes its output to a ZMQ socket.
@@ -11,7 +11,7 @@ The logger is **not** thread safe because ZMQ sockets are not thread safe.
1111
## Usage
1212
```julia
1313
import Logging
14-
using LoggingZMQ
14+
using ZMQLoggers
1515
using ZMQ
1616

1717
ctx = Context()

src/LoggingZMQ.jl renamed to src/ZMQLoggers.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module LoggingZMQ
1+
module ZMQLoggers
22

33
import Logging
44
import ZMQ
@@ -59,4 +59,4 @@ function Logging.handle_message(logger::ZMQLogger, lvl::Logging.LogLevel, msg, _
5959
return nothing
6060
end
6161

62-
end # module LoggingZMQ
62+
end # module ZMQLoggers

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import Base.Threads: @spawn
2-
using LoggingZMQ
2+
using ZMQLoggers
33
using ZMQ
44
using Test
55
import Logging
66
using Aqua
77

88
@testset "Aqua" begin
9-
Aqua.test_all(LoggingZMQ)
9+
Aqua.test_all(ZMQLoggers)
1010
end
1111

1212
const ctx = Context()

0 commit comments

Comments
 (0)