Skip to content

Commit

Permalink
Make minimum logging level for release INFO.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Jan 17, 2024
1 parent 7aac4db commit ff9276d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/IKVM.Maven.Sdk.Tasks/MavenReferenceItemResolve.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,11 @@ void TryWriteCacheFile(MavenResolveCacheFile cacheFile)
/// <returns></returns>
public override bool Execute()
{
#if DEBUG
using var d = SLF4JContextLogger.Enter(new SLF4JMSBuildLoggerProxy(Log, org.slf4j.@event.Level.TRACE));
#else
using var d = SLF4JContextLogger.Enter(new SLF4JMSBuildLoggerProxy(Log, org.slf4j.@event.Level.INFO));
#endif

try
{
Expand Down

0 comments on commit ff9276d

Please sign in to comment.