Compare commits

..

No commits in common. "master" and "v1.0.0" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View File

@ -1,9 +1,5 @@
# Changelog # Changelog
## [1.0.1] - 2025-03-27
### Fixed
- Correct transfer of priority when writing to the system log.
## [1.0.0] - 2025-03-23 ## [1.0.0] - 2025-03-23
### Added ### Added

View File

@ -265,7 +265,7 @@ version(Windows) {
--- ---
+/ +/
void writesyslog(string message, int priority) { void writesyslog(string message, int priority) {
syslog(priority, message.toStringz()); syslog(_sysPriorityOS[priority], message.toStringz());
} }
} }