From 13f88096efba83fe9005ba00fdff38d6cba7d1d2 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Mon, 15 Nov 2021 12:43:11 +0100 Subject: [PATCH] Disable ObservableStores warning Rationale: In Nim 1.2.x this warning was triggered too easily, this was fixed in Nim 1.4.x. Because 1.2.x is still used, we disable this warning to ensure that the long list of ObservableStores warnings does not obfuscates other warnings. --- nim.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/nim.cfg b/nim.cfg index 59a8296a..ec563332 100644 --- a/nim.cfg +++ b/nim.cfg @@ -1,2 +1,3 @@ -d:"chronicles_log_level=INFO" --warning:LockLevel:off +--warning:ObservableStores:off