AW: Playlists : Add an entire library doesn't works
The problem here is that method ManagePlaylistsModel.LoadPlaylist raised an exception.
Open the solution in Visual Studio 2008 and set a breakpoint at the beginning of that method.
If you're not used to debug code, use that code:
Then just run it and give me the log output which is produced by that code.
The problem here is that method ManagePlaylistsModel.LoadPlaylist raised an exception.
Open the solution in Visual Studio 2008 and set a breakpoint at the beginning of that method.
If you're not used to debug code, use that code:
Code:
public void LoadPlaylist()
{
try
{
<<all the original code of this method>>
}
catch (Exception e)
{
ServiceRegistration.Get<ILogger>().Error("----- Error:", e);
}
}
Then just run it and give me the log output which is produced by that code.