Compare commits

..

2 Commits

Author SHA1 Message Date
Alexander Zhirov a952080a84 update changelog 2025-03-27 14:44:14 +03:00
Alexander Zhirov 5f950ab890 Fix writesyslog 2025-03-27 14:40:55 +03:00
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
# 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(_sysPriorityOS[priority], message.toStringz()); syslog(priority, message.toStringz());
} }
} }