Sergey G. Brester

Results 533 comments of Sergey G. Brester

> I do need to be informed about important INFO stuff that happens very rarely What is important on such stuff? > Allow filters or jails to override log levels...

Sure it were possible, but only if the logger of modules would call [fileConfig](https://docs.python.org/3/library/logging.config.html#logging.config.fileConfig) function (what fail2ban modules don't do at the moment). In principle it'd be simpler to extend...

Here is the PoC how it can be made using dictConfig: Firstly we initialize main logger object and 2 further logger objects (all sharing INFO level from main object): ```python...

FWIW, it seems like I got it also deadlocked with latest WinBtrfs (v1.7.9, with enabled zstd compression) just using robocopy copying a large folder with /MIR option from NTFS drive...

> I'm having the same issue... > and I could read and write. Then you had probably another issue. At least in my case the (robo)copy process with following "freeze"...

> but my other partitions work fine. Why they shouldn't? The work with kernel driver takes place asynchronously via [IoQueue and WorkItems](https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/system-worker-threads) and tasks are isolated from user space per...

I would like to contribute to the development of S2, so my 2 cents about that issue, to clarify current state: 1. firstly, although I won't disagree @Fishwaldo, but... -...

@PoltoS Thx, I'll take a look at your debug branch and all the ZWay stuff. I guess also that it is not trivial, but hope to find some way to...

[Endianness](https://en.wikipedia.org/wiki/Endianness)? One could surely do that, but have to check `__BYTE_ORDER` (`__BIG_ENDIAN__`, `__LITTLE_ENDIAN__`, etc) or use `htonll` and co. Just... good luck to implement it cross platform and compiler -...