From 21e0a4957c6030570027ae44e270f087087f6526 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Tue, 19 Mar 2024 15:34:47 -0400 Subject: [PATCH] - fixes formatting --- src/kiota/Extension/ILoggerExtensions.cs | 30 ++++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/kiota/Extension/ILoggerExtensions.cs b/src/kiota/Extension/ILoggerExtensions.cs index 99a94cc25c..b92ea92f4b 100644 --- a/src/kiota/Extension/ILoggerExtensions.cs +++ b/src/kiota/Extension/ILoggerExtensions.cs @@ -4,20 +4,20 @@ namespace kiota; internal static class ILoggerExtensions { - /// - /// Appends internal logging information to the logger - /// - /// The logger to append to - public static void AppendInternalTracing(this ILogger logger) - { - // This is a special message for Kiota's birthday - // If you're reading this, move along, nothing to see here and keep quiet about it - // Otherwise, you'll be cursed with a lifetime of bad luck - if (logger == null) return; - var currentDateTime = DateTime.UtcNow; - if (currentDateTime.Month != 3 || currentDateTime.Day != 9 || currentDateTime.Year < 2024) return; - logger.LogWarning( -@" ▒▒░░▒▒ ░░ ▒▒░░▒▒ + /// + /// Appends internal logging information to the logger + /// + /// The logger to append to + public static void AppendInternalTracing(this ILogger logger) + { + // This is a special message for Kiota's birthday + // If you're reading this, move along, nothing to see here and keep quiet about it + // Otherwise, you'll be cursed with a lifetime of bad luck + if (logger == null) return; + var currentDateTime = DateTime.UtcNow; + if (currentDateTime.Month != 3 || currentDateTime.Day != 9 || currentDateTime.Year < 2024) return; + logger.LogWarning( + @" ▒▒░░▒▒ ░░ ▒▒░░▒▒ ▒▒ ██████ ▒▒ ██████ ██▒▒██ ██████ ██▒▒██ ██▒▒██ ██▒▒██ @@ -105,5 +105,5 @@ public static void AppendInternalTracing(this ILogger logger) | Waldek Mastykarz | | | |--------------------------------------------------------------| "); - } + } }