@logtape/logtape 0.10.0-dev.167 → 0.10.0-dev.169

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -34,6 +34,9 @@ The highlights of LogTape are:
34
34
  You can use template literals to log messages with placeholders and
35
35
  values.
36
36
 
37
+ - *[Built-in data redaction]*: LogTape provides robust capabilities to redact
38
+ sensitive information from logs using pattern-based or field-based approaches.
39
+
37
40
  - *[Dead simple sinks]*: You can easily add your own sinks to LogTape.
38
41
 
39
42
  ![](./screenshots/web-console.png)
@@ -52,6 +55,7 @@ The highlights of LogTape are:
52
55
  [Structured logging]: https://logtape.org/manual/struct
53
56
  [Hierarchical categories]: https://logtape.org/manual/categories
54
57
  [Template literals]: https://logtape.org/manual/start#how-to-log
58
+ [Built-in data redaction]: https://logtape.org/manual/redaction
55
59
  [Dead simple sinks]: https://logtape.org/manual/sinks
56
60
 
57
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@logtape/logtape",
3
- "version": "0.10.0-dev.167+449a958a",
3
+ "version": "0.10.0-dev.169+ddc88cdd",
4
4
  "description": "Simple logging library with zero dependencies for Deno/Node.js/Bun/browsers",
5
5
  "keywords": [
6
6
  "logging",
@@ -58,7 +58,7 @@ export interface TextFormatterOptions {
58
58
  * (e.g., `"2023-11-14"`).
59
59
  * - `"rfc3339"`: The date and time in RFC 3339 format
60
60
  * (e.g., `"2023-11-14T22:13:20.000Z"`).
61
- * - `"none"` or `"disabled"`: No displayment
61
+ * - `"none"` or `"disabled"`: No display
62
62
  *
63
63
  * Alternatively, this can be a function that accepts a timestamp and returns
64
64
  * a string.