Fixed bug where the album directory not being created when uploading a song. Working on moving the song to a new path when the artist or album has been changed. Running into issue with only one process is permitted to have access to the file. #43 and #37

This commit is contained in:
amazing-username
2019-05-20 20:02:19 -04:00
parent e30f80d7d5
commit 346609b7bd
3 changed files with 180 additions and 88 deletions
+13
View File
@@ -0,0 +1,13 @@
using System;
using NLog;
namespace Icarus.Controllers.Managers
{
public class BaseManager
{
#region Fields
protected static Logger _logger = NLog.Web.NLogBuilder.ConfigureNLog("nlog.config").GetCurrentClassLogger();
#endregion
}
}