This commit is contained in:
Peli de Halleux 2023-06-02 19:43:47 +00:00
Родитель 69d25674ea
Коммит 518aa52d55
1 изменённых файлов: 0 добавлений и 9 удалений

Просмотреть файл

@ -34,15 +34,6 @@ export function logToConsole(priority: LoggerPriority, message: string) {
export function enableLogging(bus: JDBus, logFn = logToConsole) {
bus.minLoggerPriority = LoggerPriority.Debug
bus.subscribe(PACKET_REPORT, (pkt: Packet) => {
if (
pkt.serviceClass === SRV_DEVICE_SCRIPT_MANAGER &&
pkt.serviceCommand === DeviceScriptManagerCmd.LogMessage
) {
const [counter, flags, content] =
pkt.jdunpack<[number, number, string]>("u8 u8 s")
logFn(LoggerPriority.Log, prefixMsg(pkt.device.shortId, content))
}
if (
pkt.serviceClass === SRV_LOGGER &&
LoggerCmd.Debug <= pkt.serviceCommand &&