You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/mrdocs.schema.json
+17-4
Original file line number
Diff line number
Diff line change
@@ -190,6 +190,19 @@
190
190
"title": "Standard Library include paths",
191
191
"type": "array"
192
192
},
193
+
"log-level": {
194
+
"default": "info",
195
+
"description": "The reporting level determines the amount of information displayed during the generation of the documentation.",
196
+
"enum": [
197
+
"trace",
198
+
"debug",
199
+
"info",
200
+
"warn",
201
+
"error",
202
+
"fatal"
203
+
],
204
+
"title": "The minimum reporting level"
205
+
},
193
206
"multipage": {
194
207
"default": true,
195
208
"description": "Generates a multipage documentation. The output directory must be a directory. This option acts as a hint to the generator to create a multipage documentation. Whether the hint is followed or not depends on the generator.",
@@ -237,11 +250,11 @@
237
250
"type": "boolean"
238
251
},
239
252
"report": {
240
-
"default": 1,
241
-
"description": "The reporting level determines the amount of information displayed during the generation of the documentation. The levels are: 0 - no output, 1 - errors only, 2 - errors and warnings, 3 - errors, warnings, and information, 4 - errors, warnings, information, and debug information.",
253
+
"default": -1,
254
+
"description": "The reporting level determines the amount of information displayed during the generation of the documentation. The value `-1` delegates the decision to the `log-level` option.",
Copy file name to clipboardexpand all lines: src/lib/Lib/ConfigOptions.json
+22-8
Original file line number
Diff line number
Diff line change
@@ -350,9 +350,7 @@
350
350
"details": "The desired level of concurrency: 0 for hardware-suggested.",
351
351
"type": "unsigned",
352
352
"default": 0,
353
-
"value-mapping": {
354
-
"0": "std::thread::hardware_concurrency()"
355
-
}
353
+
"min-value": 0
356
354
},
357
355
{
358
356
"name": "verbose",
@@ -363,12 +361,28 @@
363
361
},
364
362
{
365
363
"name": "report",
366
-
"brief": "The minimum reporting level: 0 to 4",
367
-
"details": "The reporting level determines the amount of information displayed during the generation of the documentation. The levels are: 0 - no output, 1 - errors only, 2 - errors and warnings, 3 - errors, warnings, and information, 4 - errors, warnings, information, and debug information.",
364
+
"brief": "The minimum reporting level",
365
+
"details": "The reporting level determines the amount of information displayed during the generation of the documentation. The value `-1` delegates the decision to the `log-level` option.",
368
366
"type": "unsigned",
369
-
"default": 1,
370
-
"min-value": 0,
371
-
"max-value": 5
367
+
"default": -1,
368
+
"min-value": -1,
369
+
"max-value": 5,
370
+
"deprecated": "Use `log-level` instead"
371
+
},
372
+
{
373
+
"name": "log-level",
374
+
"brief": "The minimum reporting level",
375
+
"details": "The reporting level determines the amount of information displayed during the generation of the documentation.",
0 commit comments