@@ -27,20 +27,20 @@ public static partial class Log
27
27
[ LoggerMessage ( EventId = 4001 , Level = LogLevel . Debug , Message = "Upload statistics: {threads} threads, {seconds} seconds." ) ]
28
28
public static partial void UploadStats ( this ILogger logger , int threads , double seconds ) ;
29
29
30
- [ LoggerMessage ( EventId = 4002 , Level = LogLevel . Debug , Message = "Uploading file to temporary store at {filePath}." ) ]
31
- public static partial void UploadingFileToTemporaryStore ( this ILogger logger , string filePath ) ;
30
+ [ LoggerMessage ( EventId = 4002 , Level = LogLevel . Debug , Message = "Uploading file to storeage at {filePath}." ) ]
31
+ public static partial void UploadingFileToStoreage ( this ILogger logger , string filePath ) ;
32
32
33
33
[ LoggerMessage ( EventId = 4003 , Level = LogLevel . Information , Message = "Instance queued for upload {identifier}. Items in queue {count} using memory {memoryUsageKb}KB." ) ]
34
34
public static partial void InstanceAddedToUploadQueue ( this ILogger logger , string identifier , int count , double memoryUsageKb ) ;
35
35
36
36
[ LoggerMessage ( EventId = 4004 , Level = LogLevel . Debug , Message = "Error removing objects that are pending upload during startup." ) ]
37
37
public static partial void ErrorRemovingPendingUploadObjects ( this ILogger logger , Exception ex ) ;
38
38
39
- [ LoggerMessage ( EventId = 4005 , Level = LogLevel . Error , Message = "Error uploading temporary store . Waiting {timeSpan} before next retry. Retry attempt {retryCount}." ) ]
39
+ [ LoggerMessage ( EventId = 4005 , Level = LogLevel . Error , Message = "Error uploading storeage . Waiting {timeSpan} before next retry. Retry attempt {retryCount}." ) ]
40
40
public static partial void ErrorUploadingFileToTemporaryStore ( this ILogger logger , TimeSpan timespan , int retryCount , Exception ex ) ;
41
41
42
- [ LoggerMessage ( EventId = 4006 , Level = LogLevel . Information , Message = "File uploaded to temporary store at {filePath}." ) ]
43
- public static partial void UploadedFileToTemporaryStore ( this ILogger logger , string filePath ) ;
42
+ [ LoggerMessage ( EventId = 4006 , Level = LogLevel . Information , Message = "File uploaded to storeage at {filePath}." ) ]
43
+ public static partial void UploadedFileToStoreage ( this ILogger logger , string filePath ) ;
44
44
45
45
[ LoggerMessage ( EventId = 4007 , Level = LogLevel . Debug , Message = "Items in queue {count}." ) ]
46
46
public static partial void InstanceInUploadQueue ( this ILogger logger , int count ) ;
0 commit comments