Skip to content

Commit fd55ae9

Browse files
committed
Update testcoe to v0.1.1 to fix errors
1 parent 9cbe7c0 commit fd55ae9

2 files changed

Lines changed: 24 additions & 25 deletions

File tree

docs/ARCHITECTURE.md

Lines changed: 23 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,29 @@ logcoe is designed as a lightweight, thread-safe logging library that provides f
77
## Component Architecture
88

99
```
10-
┌─────────────────────────────────────┐
11-
│ User Application │
12-
│ (Client Code) │
13-
└───────────────┬─────────────────────┘
14-
15-
┌───────────────▼─────────────────────┐
16-
│ logcoe API │
17-
│ (Public Interface Functions) │
18-
└───────────────┬─────────────────────┘
19-
20-
┌───────────────▼─────────────────────┐
21-
│ LoggerImpl │
22-
│ (Internal Implementation) │
23-
│ │
24-
│ ┌─────────────┬─────────────────┐ │
25-
│ │ Mutex │ Output Streams │ │
26-
│ │ Protection │ Management │ │
27-
│ └─────────────┴─────────────────┘ │
28-
│ │
29-
│ ┌─────────────┬─────────────────┐ │
30-
│ │ Log Level │ Timestamp │ │
31-
│ │ Filtering │ Formatting │ │
32-
│ └─────────────┴─────────────────┘ │
33-
└─────────────────────────────────────┘
10+
┌─────────────────────────────────────┐
11+
│ User Application │
12+
│ (Client Code) │
13+
└──────────────────┬──────────────────┘
14+
15+
┌──────────────────▼──────────────────┐
16+
│ logcoe API │
17+
│ (Public Interface Functions) │
18+
└──────────────────┬──────────────────┘
19+
20+
┌──────────────────▼──────────────────┐
21+
│ LoggerImpl │
22+
│ (Internal Implementation) │
23+
│ │
24+
│ ┌─────────────┬─────────────────┐ │
25+
│ │ Mutex │ Output Streams │ │
26+
│ │ Protection │ Management │ │
27+
│ └─────────────┴─────────────────┘ │
28+
│ ┌─────────────┬─────────────────┐ │
29+
│ │ Log Level │ Timestamp │ │
30+
│ │ Filtering │ Formatting │ │
31+
│ └─────────────┴─────────────────┘ │
32+
└─────────────────────────────────────┘
3433
```
3534

3635
## Core Components

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ else()
77
FetchContent_Declare(
88
testcoe
99
GIT_REPOSITORY https://github.com/nircoe/testcoe.git
10-
GIT_TAG v0.1.0
10+
GIT_TAG v0.1.1
1111
)
1212
FetchContent_MakeAvailable(testcoe)
1313
endif()

0 commit comments

Comments
 (0)