Skip to content

Commit

Permalink
whitespace format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrch committed Jul 22, 2024
1 parent ca2b613 commit 02c6d0a
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions Migration.Toolkit.KXP.Api/KxpMediaFileFacade.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Diagnostics;

using CMS.DataEngine;
using CMS.MediaLibrary;
using Microsoft.Extensions.Logging;
Expand Down Expand Up @@ -47,16 +46,20 @@ public MediaLibraryInfo CreateMediaLibrary(int siteId, string libraryFolder, str
var newLibrary = new MediaLibraryInfo
{
// Sets the library properties
LibraryDisplayName = libraryDisplayName,
LibraryName = libraryName,
LibraryDescription = libraryDescription,
LibraryFolder = libraryFolder
LibraryDisplayName = libraryDisplayName, LibraryName = libraryName, LibraryDescription = libraryDescription, LibraryFolder = libraryFolder
};

// Saves the new media library to the database
MediaLibraryInfo.Provider.Set(newLibrary);

logger.LogTrace("Emit library {Info}", new { siteId, libraryFolder, libraryDescription, libraryName, libraryDisplayName });

logger.LogTrace("Emit library {Info}", new
{
siteId,
libraryFolder,
libraryDescription,
libraryName,
libraryDisplayName
});

return newLibrary;
}
Expand Down

0 comments on commit 02c6d0a

Please sign in to comment.