diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-08 17:05:00 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-04-08 17:05:00 -0400 |
| commit | a55ffea7a1dbe0c2ba24759f22b4f2ec4412d3bb (patch) | |
| tree | 529b9e73ad0768d471db5f52d32316abefdf213a | |
| parent | 57f082051d15da7450fe41f293e0131c8320db33 (diff) | |
starting dashboard paging
| -rw-r--r-- | MediaBrowser.Common.Implementations/BaseApplicationHost.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Common.Implementations/BaseApplicationHost.cs b/MediaBrowser.Common.Implementations/BaseApplicationHost.cs index 1a2ab4a51..6be6826f4 100644 --- a/MediaBrowser.Common.Implementations/BaseApplicationHost.cs +++ b/MediaBrowser.Common.Implementations/BaseApplicationHost.cs @@ -240,6 +240,11 @@ namespace MediaBrowser.Common.Implementations var assemblies = GetComposablePartAssemblies().ToArray(); + foreach (var assembly in assemblies) + { + Logger.Info("Loading {0}", assembly.FullName); + } + AllTypes = assemblies.SelectMany(GetTypes).ToArray(); AllConcreteTypes = AllTypes.Where(t => t.IsClass && !t.IsAbstract && !t.IsInterface && !t.IsGenericType).ToArray(); |
