[fixed] Playlists : Add an entire library doesn't works (1 Viewer)

Albert

MP2 Developer
  • Premium Supporter
  • February 18, 2008
    1,297
    1,130
    45
    Freiburg im Breisgau, Germany
    Home Country
    Germany Germany
    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:

    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.
     

    Albert

    MP2 Developer
  • Premium Supporter
  • February 18, 2008
    1,297
    1,130
    45
    Freiburg im Breisgau, Germany
    Home Country
    Germany Germany
    AW: Playlists : Add an entire library doesn't works

    Oh, I just read your new bug report. Forget my previous posting. I'll check your logs from the other report.
     

    Users who are viewing this thread

    Top Bottom