Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2025 Mason L'Etoile
Copyright (c) 2025 Starlet Libraries, Mason L'Etoile

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Starlet Logger

![Tests](https://github.com/starlet-engine/logger/actions/workflows/test.yml/badge.svg)
![Tests](https://github.com/starlet-libs/logger/actions/workflows/test.yml/badge.svg)
[![C++17](https://img.shields.io/badge/C%2B%2B-17-blue.svg)](https://isocpp.org/std/the-standard)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)

Expand All @@ -26,7 +26,7 @@ A lightweight logging utility for C++ applications.
include(FetchContent)

FetchContent_Declare(starlet_logger
GIT_REPOSITORY https://github.com/starlet-engine/logger.git
GIT_REPOSITORY https://github.com/starlet-libs/logger.git
GIT_TAG main
)
FetchContent_MakeAvailable(starlet_logger)
Expand All @@ -48,7 +48,7 @@ executable('app_name', 'main.cpp', dependencies: starlet_logger_dep)
## Building and Testing
```bash
# 1. Clone starlet-logger
git clone https://github.com/starlet-engine/logger.git
git clone https://github.com/starlet-libs/logger.git
cd starlet-logger
```

Expand Down
Loading