Browse Source

remove some unnecessary log entries

pull/59/merge
Siegfried Pammer 13 years ago
parent
commit
e2ee087e7f
  1. 2
      src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowActiveEvaluator.cs
  2. 2
      src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowOpenEvaluator.cs

2
src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowActiveEvaluator.cs

@ -36,7 +36,7 @@ namespace ICSharpCode.SharpDevelop
Type activeWindowType = Type.GetType(activeWindow, false); Type activeWindowType = Type.GetType(activeWindow, false);
if (activeWindowType == null) { if (activeWindowType == null) {
SD.Log.WarnFormatted("WindowActiveCondition: cannot find Type {0}", activeWindow); //SD.Log.WarnFormatted("WindowActiveCondition: cannot find Type {0}", activeWindow);
return false; return false;
} }

2
src/Main/Base/Project/Src/Internal/ConditionEvaluators/WindowOpenEvaluator.cs

@ -34,7 +34,7 @@ namespace ICSharpCode.SharpDevelop
Type openWindowType = Type.GetType(openWindow, false); Type openWindowType = Type.GetType(openWindow, false);
if (openWindowType == null) { if (openWindowType == null) {
SD.Log.WarnFormatted("WindowOpenCondition: cannot find Type {0}", openWindow); //SD.Log.WarnFormatted("WindowOpenCondition: cannot find Type {0}", openWindow);
return false; return false;
} }

Loading…
Cancel
Save