diff --git a/Project.toml b/Project.toml index cfe408e..062ca75 100644 --- a/Project.toml +++ b/Project.toml @@ -71,7 +71,7 @@ Random = "1.10" Reexport = "1.2" SafeTestsets = "0.1" SciMLBase = "2.104, 3.0" -SciMLLogging = "1.7.0" +SciMLLogging = "2" StaticArrays = "1" Test = "1.10" Zygote = "0.6.69, 0.7" diff --git a/src/Integrals.jl b/src/Integrals.jl index 49a430b..6bf82bd 100644 --- a/src/Integrals.jl +++ b/src/Integrals.jl @@ -13,7 +13,7 @@ using Random: Random using ArrayInterface: ArrayInterface using SciMLLogging: SciMLLogging, @SciMLMessage, Silent, DebugLevel, InfoLevel, WarnLevel, ErrorLevel, @verbosity_specifier, AbstractVerbositySpecifier, - None, Minimal, Standard, Detailed, All, AbstractMessageLevel + None, Minimal, Standard, Detailed, All include("verbosity.jl") include("algorithms_meta.jl") diff --git a/test/explicit_imports_tests.jl b/test/explicit_imports_tests.jl index c130f0c..07e859e 100644 --- a/test/explicit_imports_tests.jl +++ b/test/explicit_imports_tests.jl @@ -10,7 +10,7 @@ using LinearAlgebra: norm @test check_no_stale_explicit_imports( Integrals; ignore = ( :norm, :AbstractVerbositySpecifier, - :DebugLevel, :Detailed, :ErrorLevel, :Minimal, :None, :Standard, :All, :AbstractMessageLevel, + :DebugLevel, :Detailed, :ErrorLevel, :Minimal, :None, :Standard, :All, ) ) === nothing end