public to internal

This commit is contained in:
Anton Suhorukov 2022-05-06 14:02:16 +03:00
parent 2156e1f847
commit 41926b6de8
4 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Common.Log;
public static partial class DistributedTaskQueueLogger
internal static partial class DistributedTaskQueueLogger
{
[LoggerMessage(Level = LogLevel.Trace, Message = "EnqueueTask '{distributedTaskId}' by instanse id '{instanceId}'")]
public static partial void TraceEnqueueTask(this ILogger logger, string DistributedTaskId, int instanceId);

View File

@ -25,7 +25,7 @@
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Common.Log;
public static partial class KafkaCacheNotifyLogger
internal static partial class KafkaCacheNotifyLogger
{
[LoggerMessage(Level = LogLevel.Error, Message = "KafkaCacheNotify Publish")]
public static partial void ErrorKafkaCacheNotifyPublish(this ILogger logger, Exception exception);

View File

@ -25,7 +25,7 @@
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Common.Log;
public static partial class RabbitMQCacheLogger
internal static partial class RabbitMQCacheLogger
{
[LoggerMessage(Level = LogLevel.Trace, Message = "Creating RabbitMQ consumer channel")]
public static partial void TraceCreatingRabbitMQ(this ILogger logger);

View File

@ -25,7 +25,7 @@
// International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode
namespace ASC.Common.Log;
public static partial class TimeZoneConverterLogger
internal static partial class TimeZoneConverterLogger
{
[LoggerMessage(Level = LogLevel.Information, Message = "TimeZone {timeZoneId} not found")]
public static partial void InformationTimeZoneNotFound(this ILogger logger, string timeZoneId);