548aca6bee
Build and Push Docker Image / build (push) Successful in 51s
Licence Check / Licence compatibility and copyright header verification (push) Failing after 1m48s
CI / Security audit (push) Successful in 2m27s
CI / Swagger Validation & Coverage (push) Successful in 2m27s
CI / Tests & coverage (push) Successful in 2m39s
- Fix permanent qBittorrent fallback degradation by resetting fallback flags during group-by polling (resolves #29) - Fix Ombi webhook key mismatch in status endpoint and test mocks (resolves #30) - Prevent timingSafeEqual TypeErrors on multi-byte CSRF token length mismatches (resolves #31) - Eliminate duplicate write stream on server.log by delegating to index.js console override (resolves #32)
10 lines
142 B
JavaScript
10 lines
142 B
JavaScript
// Copyright (c) 2026 Gordon Bolton. MIT License.
|
|
|
|
function logToFile(message) {
|
|
console.log(message);
|
|
}
|
|
|
|
module.exports = {
|
|
logToFile
|
|
};
|