private void LogSingleObject()

in src/Ingestor.cs [899:907]


        private void LogSingleObject(DataSource storageObject)
        {
            // This path only prints out stats for objects that would have been ingested, without actually ingesting
            var sizeString = $"Size (bytes): '{storageObject.SizeInBytes}', ";
            var creationTimeString = (storageObject.CreationTimeUtc.HasValue ? $"CreationTime: '{storageObject.CreationTimeUtc.Value.ToString("s")}', " : string.Empty);
            var pathString = $"Path: '{(string.IsNullOrWhiteSpace(storageObject.FileSystemPath) ? storageObject.SafeCloudFileUri : storageObject.FileSystemPath)}'";

            m_logger.LogInfo($"==> {sizeString}{creationTimeString}{pathString}");
        }