Fixed LogManager access to use non strings, this prevents future refactoring problems.

git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2257 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
RKrom 2012-11-08 17:03:46 +00:00
commit ca73e3a673
3 changed files with 3 additions and 3 deletions

View file

@ -34,7 +34,7 @@ namespace Greenshot.Helpers {
/// Description of EnvironmentInfo.
/// </summary>
public static class EnvironmentInfo {
private static readonly log4net.ILog LOG = log4net.LogManager.GetLogger("Greenshot");
private static readonly log4net.ILog LOG = log4net.LogManager.GetLogger(typeof(EnvironmentInfo));
private static bool? isWindows = null;
public static bool IsWindows {