1- // --------------------------------------------------------------------------------------------------------------------
2- // <copyright file="ILogHelper.cs" company="James Jackson-South">
3- // Copyright (c) James Jackson-South and contributors.
4- // Licensed under the Apache License, Version 2.0.
1+ // <copyright file="ILogHelper.cs" company="James Jackson-South, Jeavon Leopold, and contributors">
2+ // Copyright (c) James Jackson-South, Jeavon Leopold, and contributors. All rights reserved.
3+ // Licensed under the Apache License, Version 2.0.
54// </copyright>
6- // <summary>
7- // Provides methods for logging messages within the application.
8- // </summary>
9- // --------------------------------------------------------------------------------------------------------------------
105
116namespace Our . Umbraco . FileSystemProviders . Azure
127{
@@ -18,8 +13,8 @@ namespace Our.Umbraco.FileSystemProviders.Azure
1813 public interface ILogHelper
1914 {
2015 /// <summary>
21- /// Traces a message, only generating the message if tracing is actually enabled.
22- /// Use this method to avoid calling any long-running methods such as "ToDebugString" if
16+ /// Traces a message, only generating the message if tracing is actually enabled.
17+ /// Use this method to avoid calling any long-running methods such as "ToDebugString" if
2318 /// logging is disabled.
2419 /// </summary>
2520 /// <typeparam name="T">The type of class the message is associated with.</typeparam>
@@ -34,15 +29,15 @@ public interface ILogHelper
3429 void Info ( Type callingType , Func < string > generateMessage ) ;
3530
3631 /// <summary>
37- /// Traces a message, only generating the message if tracing is actually enabled.
32+ /// Traces a message, only generating the message if tracing is actually enabled.
3833 /// </summary>
3934 /// <typeparam name="T">The type of class the message is associated with.</typeparam>
4035 /// <param name="generateMessageFormat">The generate message format.</param>
4136 /// <param name="formatItems">The format items.</param>
4237 void Info < T > ( string generateMessageFormat , params Func < object > [ ] formatItems ) ;
43-
38+
4439 /// <summary>
45- /// Traces a message, only generating the message if tracing is actually enabled.
40+ /// Traces a message, only generating the message if tracing is actually enabled.
4641 /// </summary>
4742 /// <param name="type">The calling <see cref="Type"/>.</param>
4843 /// <param name="generateMessageFormat">The generate message format.</param>
0 commit comments