-
Notifications
You must be signed in to change notification settings - Fork 15
/
.jazzy.yaml
70 lines (62 loc) · 1.85 KB
/
.jazzy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module: TraceLog
author: Tony Stone
author_url: http://github.com/tonystone
github_url: http://github.com/tonystone/tracelog
exclude:
- "Tests/**/*.swift"
copyright: '© 2019 [Tony Stone](https://github.com/tonystone) under the [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html).'
xcodebuild_arguments: [clean,build,-project,TraceLog.xcodeproj,-scheme,TraceLog-Package]
theme: fullwidth
output: docs
head: |
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-102615840-5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-102615840-5');
</script>
readme: Sources/Documentation/Index/Index.md
documentation: Sources/Documentation/*.md
abstract: Sources/Documentation/Abstracts/*.md
custom_categories:
- name: User Guides
children:
- Quick Start
- Objective-C Support
- name: Configuration
children:
- configure(mode:writers:environment:)
- configure(writers:environment:)
- name: Logging
children:
- logError(_:_:_:_:message:)
- logWarning(_:_:_:_:message:)
- logInfo(_:_:_:_:message:)
- logTrace(_:_:_:_:message:)
- logTrace(_:level:_:_:_:message:)
- name: Writers
children:
- ConsoleWriter
- FileWriter
- name: Formatters
children:
- TextFormat
- JSONFormat
- name: Software Developer Kit (SDK)
children:
- Writer
- OutputStreamWriter
- OutputStreamFormatter
- name: Supporting Types
children:
- ConcurrencyMode
- WriterConcurrencyMode
- AsyncConcurrencyModeOption
- Environment
- LogLevel
- StaticContext
- RuntimeContext
- OutputStreamFormatterError
- FailureReason