@stonyx/logs 1.0.1-alpha.23 → 1.0.1-alpha.25
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 +36 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -153,21 +153,27 @@ These methods can then be called in your application with [logging parameters](#
|
|
|
153
153
|
|
|
154
154
|
Color settings are handled by determining whether your input is a color name or a hex value (prefixed with **#**). For example, passing `red` as a color setting will utilize `chalk.red`, while passing `#ff0000` would use `chalk.hex('#ff0000')` instead. A [list of available colors](https://github.com/chalk/chalk#colors) can be found in chalks' documentation.
|
|
155
155
|
|
|
156
|
-
Additionally, these methods return a promise when `logToFile` is true,
|
|
156
|
+
Additionally, these methods return a promise when `logToFile` is true. That promise rejecting is the only signal that a write failed, so you must either `await` the call or attach a `.catch()` — see [File Write Failures](#file-write-failures). `then()` and `finally()` are also available.
|
|
157
157
|
|
|
158
158
|
```js
|
|
159
159
|
async method() {
|
|
160
|
-
|
|
160
|
+
try {
|
|
161
|
+
await log.error('error message', true);
|
|
161
162
|
|
|
162
|
-
|
|
163
|
+
// do something after logs/error.log (default) is created
|
|
164
|
+
} catch (err) {
|
|
165
|
+
// the write failed; the rejection is the only notice you get
|
|
166
|
+
process.stderr.write(`log write failed: ${err.code}\n`);
|
|
167
|
+
}
|
|
163
168
|
}
|
|
164
169
|
```
|
|
165
170
|
|
|
166
171
|
#### File Write Failures
|
|
167
172
|
|
|
168
|
-
When `logToFile` is true, **the returned promise rejecting is the only failure signal.**
|
|
169
|
-
|
|
170
|
-
|
|
173
|
+
When `logToFile` is true, **the returned promise rejecting is the only failure signal.** The log
|
|
174
|
+
line itself is still written to the console as usual, but **no error notice is printed** and no
|
|
175
|
+
fallback log is written when the log directory or file cannot be written: the underlying `fs` error
|
|
176
|
+
is propagated to the caller with its `code` intact (`ENOENT`, `ENOTDIR`, `EACCES`, `EPERM`,
|
|
171
177
|
`EROFS`, ...).
|
|
172
178
|
|
|
173
179
|
A fire-and-forget call therefore produces an **unhandled promise rejection** on a failed write.
|
|
@@ -181,8 +187,30 @@ log.error('error message', true);
|
|
|
181
187
|
log.error('error message', true).catch(err => process.stderr.write(`log write failed: ${err.code}\n`));
|
|
182
188
|
```
|
|
183
189
|
|
|
184
|
-
A write
|
|
185
|
-
|
|
190
|
+
A failed write is retried exactly once, and only for the two codes that recreating the log directory
|
|
191
|
+
can repair: `ENOENT` (the directory was removed at runtime) and `ENOTDIR` (a path component was
|
|
192
|
+
replaced by a non-directory). The directory cache entry is dropped, the directory is recreated, and
|
|
193
|
+
the write is reattempted once before the rejection surfaces. If the recreate itself fails, that
|
|
194
|
+
error is what surfaces.
|
|
195
|
+
|
|
196
|
+
Every other code — including `EACCES`, `EPERM` and `EROFS` — rejects immediately with no retry,
|
|
197
|
+
because `mkdir` on an existing directory is a successful no-op: it cannot change a permission bit or
|
|
198
|
+
a read-only mount, so a retry could only ever repeat the same failure at twice the syscall cost.
|
|
199
|
+
|
|
200
|
+
##### The directory cache
|
|
201
|
+
|
|
202
|
+
To keep the write path free of repeated `mkdir` calls, each `Log` instance exposes a
|
|
203
|
+
`directoryCache` field: a `Map` keyed on the resolved directory (not on the target filename), whose
|
|
204
|
+
values are the in-flight or settled `mkdir` promises. It is **instance-scoped, not module-scoped** —
|
|
205
|
+
two `Log` instances pointing at the same directory each call `mkdir` once. Entries are **never
|
|
206
|
+
evicted on success**, so a directory is created at most once per instance for the process lifetime;
|
|
207
|
+
entries are dropped only when the `mkdir` rejects, or when a write fails with a retryable code and
|
|
208
|
+
the directory is recreated.
|
|
209
|
+
|
|
210
|
+
It is public only because the class carries an index signature, and it is not part of the supported
|
|
211
|
+
API: treat it as read-only, since mutating it corrupts the write path. Note also that the name is
|
|
212
|
+
reserved — a log type called `directoryCache` is silently skipped rather than overwriting the cache,
|
|
213
|
+
so no convenience method is generated for it.
|
|
186
214
|
|
|
187
215
|
### The Debug Method
|
|
188
216
|
|