Skip to content

Commit 2bcca0a

Browse files
committed
Update slick_queue; change include folder from include/slick_logger to include/slick
1 parent e7e3ead commit 2bcca0a

17 files changed

+33
-29
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v1.0.0.8 - 10-21-2025
2+
- Update slick_queue to v1.1.0.2
3+
- Change include folder from include/slick_logger to include/slick
4+
15
# v1.0.0.7 - 10-21-2025
26
- Update slick_queue to v1.1.0.1
37
- Change namespace from slick_logger to slick::logger

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.20)
22

3-
set(BUILD_VERSION 1.0.0.7)
3+
set(BUILD_VERSION 1.0.0.8)
44
project(slick_logger VERSION ${BUILD_VERSION} LANGUAGES CXX)
55

66
set(CMAKE_CXX_STANDARD 20)
@@ -13,14 +13,14 @@ set(BUILD_SLICK_QUEUE_TESTS OFF CACHE BOOL "" FORCE)
1313
FetchContent_Declare(
1414
slick_queue
1515
GIT_REPOSITORY https://github.com/SlickQuant/slick_queue.git
16-
GIT_TAG v1.1.0.1
16+
GIT_TAG v1.1.0.2
1717
)
1818
FetchContent_MakeAvailable(slick_queue)
1919

2020
set(WARNING_MESSAGE "// ********** THIS FILE IS AUTO-GENERATED FROM src/logger.hpp **********
2121
// ********** DO NOT EDIT THIS FILE DIRECTLY **********
2222
// ********** EDIT src/logger.hpp AND RE-RUN CMAKE TO UPDATE **********")
23-
configure_file(src/logger.hpp ${CMAKE_CURRENT_SOURCE_DIR}/include/slick_logger/logger.hpp)
23+
configure_file(src/logger.hpp ${CMAKE_CURRENT_SOURCE_DIR}/include/slick/logger.hpp)
2424

2525
if (NOT CMAKE_BUILD_TYPE)
2626
set(CMAKE_BUILD_TYPE Release)

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ your_project/
4040
├── include/
4141
│ ├── slick_logger/
4242
│ │ └── logger.hpp
43-
│ └── slick_queue/
43+
│ └── slick/
4444
│ └── slick_queue.h
4545
└── src/
4646
└── main.cpp
@@ -112,7 +112,7 @@ add_executable(your_app main.cpp)
112112
### Basic Usage
113113

114114
```cpp
115-
#include <slick_logger/logger.hpp>
115+
#include <slick/logger.hpp>
116116

117117
int main() {
118118
// Initialize the logger (traditional way)
@@ -136,7 +136,7 @@ int main() {
136136
slick_logger uses C++20's `std::format` for type-safe and efficient string formatting:
137137

138138
```cpp
139-
#include <slick_logger/logger.hpp>
139+
#include <slick/logger.hpp>
140140

141141
int main() {
142142
slick::logger::Logger::instance().init("app.log");
@@ -182,10 +182,10 @@ int main() {
182182
### Multi-Sink Usage
183183

184184
```cpp
185-
#include <slick_logger/logger.hpp>
185+
#include <slick/logger.hpp>
186186

187187
int main() {
188-
using namespace slick_logger;
188+
using namespace slick::logger;
189189

190190
// Setup multiple sinks
191191
Logger::instance().clear_sinks();
@@ -215,7 +215,7 @@ int main() {
215215
You can log messages to specific sinks by name or get a reference to a sink. Each sink also supports its own minimum log level filtering:
216216

217217
```cpp
218-
#include <slick_logger/logger.hpp>
218+
#include <slick/logger.hpp>
219219

220220
int main() {
221221
using namespace slick::logger;
@@ -266,7 +266,7 @@ int main() {
266266
Dedicated sinks only receive messages logged directly to them, not broadcast messages from LOG_* macros:
267267

268268
```cpp
269-
#include <slick_logger/logger.hpp>
269+
#include <slick/logger.hpp>
270270

271271
int main() {
272272
using namespace slick::logger;
@@ -310,7 +310,7 @@ int main() {
310310
### Advanced Configuration
311311

312312
```cpp
313-
#include <slick_logger/logger.hpp>
313+
#include <slick/logger.hpp>
314314

315315
int main() {
316316
using namespace slick::logger;

benchmarks/benchmark_main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <numeric>
99

1010
// Include logging libraries
11-
#include <slick_logger/logger.hpp>
11+
#include <slick/logger.hpp>
1212
#include <spdlog/spdlog.h>
1313
#include <spdlog/sinks/basic_file_sink.h>
1414
#include <spdlog/sinks/null_sink.h>

benchmarks/latency_benchmark.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <algorithm>
55
#include <iomanip>
66

7-
#include <slick_logger/logger.hpp>
7+
#include <slick/logger.hpp>
88
#include <spdlog/spdlog.h>
99
#include <spdlog/sinks/basic_file_sink.h>
1010

benchmarks/memory_benchmark.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include <atomic>
55
#include <chrono>
66

7-
#include <slick_logger/logger.hpp>
7+
#include <slick/logger.hpp>
88
#include <spdlog/spdlog.h>
99
#include <spdlog/sinks/basic_file_sink.h>
1010
#include <spdlog/async.h>

benchmarks/quick_benchmark.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#undef max
1313
#endif
1414

15-
#include <slick_logger/logger.hpp>
15+
#include <slick/logger.hpp>
1616
#include <spdlog/spdlog.h>
1717
#include <spdlog/sinks/basic_file_sink.h>
1818
#include <fmt/format.h>

benchmarks/simple_benchmark.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#undef max
1616
#endif
1717

18-
#include <slick_logger/logger.hpp>
18+
#include <slick/logger.hpp>
1919
#include <spdlog/spdlog.h>
2020
#include <spdlog/sinks/basic_file_sink.h>
2121
#include <fmt/format.h>

benchmarks/throughput_benchmark.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#include <algorithm>
77
#include <map>
88

9-
#include <slick_logger/logger.hpp>
9+
#include <slick/logger.hpp>
1010
#include <spdlog/spdlog.h>
1111
#include <spdlog/sinks/basic_file_sink.h>
1212
#include <spdlog/async.h>

examples/example.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#include <slick_logger/logger.hpp>
1+
#include <slick/logger.hpp>
22
#include <thread>
33
#include <chrono>
44

0 commit comments

Comments
 (0)