From 51775a19bf394e43e01dc6f5b71ac85d0f9239ba Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fran=C3=A7ois=20Laurent?= <francois.laurent@posteo.net>
Date: Fri, 14 Jun 2024 13:28:49 +0200
Subject: [PATCH] fix: attempt to suppress Formatting.jl warning message

---
 src/LarvaTagger.jl | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/LarvaTagger.jl b/src/LarvaTagger.jl
index 337a0e3..b3484f9 100644
--- a/src/LarvaTagger.jl
+++ b/src/LarvaTagger.jl
@@ -4,16 +4,18 @@ using PlanarLarvae, PlanarLarvae.Datasets, PlanarLarvae.Formats
 using ObservationPolicies
 using TidyObservables
 
+using Logging
+Logging.disable_logging(Logging.Warn) # prior to loading old libraries
 using JSServe, WGLMakie
 using JSServe: evaljs, onjs
 using Makie
+Logging.disable_logging(Logging.Debug) # restore default
 using Format
 using Colors
 using StaticArrays
 using Statistics
 using Observables
 using Meshes
-using Logging
 import Dates
 using OrderedCollections
 using Random
-- 
GitLab