Compare commits
2 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
a952080a84 | |
|
|
5f950ab890 |
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue