--- trunk/EmuXPortal/Api/DisplayHelper.cs 2012/04/03 21:00:28 13 +++ trunk/EmuXPortal/Api/DisplayHelper.cs 2012/04/03 21:39:47 15 @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; +using EmuXPortal.Logging; namespace EmuXPortal.Api { @@ -12,6 +13,7 @@ namespace EmuXPortal.Api public DisplayHelper(string device) : this(GetScreenFromString(device)) { } public DisplayHelper(Screen device) { + logger.WriteLine("Using DisplayDevice: {0}", device); PhysicalDisplayDevice = device; } #region GetScreenFromString |