Verifies the integrety of the projects, as builds are executed immediately after a code change was detected. This plan provides no artifiacts (use a nightly build instead).
OF-3306: Reduce memory footprint of Pubsub subscription
The issue in OF-3306 relates to a large amount of `NodeSubscription` instances being loaded in memory. This commit does not address that, but does significantly reduce the memory footprint of each instance. This helps reduce the impact of the issue.
The memory footprint is reduced by switching from a Logger-instance per instance, to a static one that's shared with all instances.
In one heap dump that was analyzed, these Logger instances accounted for (very roughly) 15% of the heap size.