Skip to content

Commit b266c2e

Browse files
authored
Merge branch 'main' into feature-task-name
2 parents e93f31b + 3a7006d commit b266c2e

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ci:
44

55
repos:
66
- repo: https://github.com/astral-sh/ruff-pre-commit
7-
rev: v0.9.4
7+
rev: v0.9.9
88
hooks:
99
- id: ruff
1010
args: [--fix, --exit-non-zero-on-fix]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ for sponsor in tomllib.loads(pathlib.Path("pyproject.toml").read_text())["tool"]
5252
<a href="https://www.variomedia.de/"><img title="Variomedia AG" src="docs/_static/sponsors/Variomedia.svg" width="190" /></a>
5353
<a href="https://tidelift.com/?utm_source=lifter&utm_medium=referral&utm_campaign=hynek"><img title="Tidelift" src="docs/_static/sponsors/Tidelift.svg" width="190" /></a>
5454
<a href="https://klaviyo.com/"><img title="Klaviyo" src="docs/_static/sponsors/Klaviyo.svg" width="190" /></a>
55+
<a href="https://privacy-solutions.org/"><img title="Privacy Solutions" src="docs/_static/sponsors/Privacy-Solutions.svg" width="190" /></a>
5556
<a href="https://www.emsys-renewables.com/"><img title="emsys renewables" src="docs/_static/sponsors/emsys-renewables.svg" width="190" /></a>
5657
<a href="https://filepreviews.io/"><img title="FilePreviews" src="docs/_static/sponsors/FilePreviews.svg" width="190" /></a>
57-
<a href="https://privacy-solutions.org/"><img title="Privacy Solutions" src="docs/_static/sponsors/Privacy-Solutions.svg" width="190" /></a>
5858
<a href="https://polar.sh/"><img title="Polar" src="docs/_static/sponsors/Polar.svg" width="190" /></a>
5959
<!-- [[[end]]] -->
6060

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ It's a callable that returns the logger that gets wrapped and returned.
7575
In the simplest case, it's a function that returns a logger -- or just a class.
7676
But you can also pass in an instance of a class with a `__call__` method for more complicated setups.
7777

78-
These will be passed to the logger factories.
78+
The arguments you pass to `structlog.get_logger()` will be passed to the logger factory.
7979
For example, if you use `structlog.get_logger("a name")` and configure *structlog* to use the standard library {class}`~structlog.stdlib.LoggerFactory`, which has support for positional parameters, the returned logger will have the name `"a name"`.
8080

8181
For the common cases of standard library logging and Twisted logging, *structlog* comes with two factories built right in:

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ for sponsor in tomllib.loads(pathlib.Path("pyproject.toml").read_text())["tool"]
2222
<a href="https://www.variomedia.de/"><img title="Variomedia AG" src="_static/sponsors/Variomedia.svg" width="190" /></a>
2323
<a href="https://tidelift.com/?utm_source=lifter&utm_medium=referral&utm_campaign=hynek"><img title="Tidelift" src="_static/sponsors/Tidelift.svg" width="190" /></a>
2424
<a href="https://klaviyo.com/"><img title="Klaviyo" src="_static/sponsors/Klaviyo.svg" width="190" /></a>
25+
<a href="https://privacy-solutions.org/"><img title="Privacy Solutions" src="_static/sponsors/Privacy-Solutions.svg" width="190" /></a>
2526
<a href="https://www.emsys-renewables.com/"><img title="emsys renewables" src="_static/sponsors/emsys-renewables.svg" width="190" /></a>
2627
<a href="https://filepreviews.io/"><img title="FilePreviews" src="_static/sponsors/FilePreviews.svg" width="190" /></a>
27-
<a href="https://privacy-solutions.org/"><img title="Privacy Solutions" src="_static/sponsors/Privacy-Solutions.svg" width="190" /></a>
2828
<a href="https://polar.sh/"><img title="Polar" src="_static/sponsors/Polar.svg" width="190" /></a>
2929
<!-- [[[end]]] -->
3030

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,11 @@ title = "Klaviyo"
257257
url = "https://klaviyo.com/"
258258
img = "Klaviyo.svg"
259259

260+
[[tool.sponcon.sponsors]]
261+
title = "Privacy Solutions"
262+
url = "https://privacy-solutions.org/"
263+
img = "Privacy-Solutions.svg"
264+
260265
[[tool.sponcon.sponsors]]
261266
title = "emsys renewables"
262267
url = "https://www.emsys-renewables.com/"
@@ -267,11 +272,6 @@ title = "FilePreviews"
267272
url = "https://filepreviews.io/"
268273
img = "FilePreviews.svg"
269274

270-
[[tool.sponcon.sponsors]]
271-
title = "Privacy Solutions"
272-
url = "https://privacy-solutions.org/"
273-
img = "Privacy-Solutions.svg"
274-
275275
[[tool.sponcon.sponsors]]
276276
title = "Polar"
277277
url = "https://polar.sh/"

0 commit comments

Comments
 (0)