From 7d0ff1242b2a66879ed4256ca838f8013cbbf959 Mon Sep 17 00:00:00 2001 From: mattias Date: Sun, 2 Oct 2011 16:47:31 +0000 Subject: [PATCH] IDE: do not warn when environmentoptions.xml is missing git-svn-id: trunk@32620 - --- ide/environmentopts.pp | 2 +- ide/miscoptions.pas | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ide/environmentopts.pp b/ide/environmentopts.pp index 29af3179ee..01719f4808 100644 --- a/ide/environmentopts.pp +++ b/ide/environmentopts.pp @@ -888,7 +888,7 @@ begin ConfFileName:=SetDirSeparators(GetPrimaryConfigPath+'/'+EnvOptsConfFileName); CopySecondaryConfigFile(EnvOptsConfFileName); if (not FileExistsUTF8(ConfFileName)) then begin - DebugLn('Note: environment config file not found - using defaults'); + //DebugLn('Note: environment config file not found - using defaults'); end; Filename:=ConfFilename; end; diff --git a/ide/miscoptions.pas b/ide/miscoptions.pas index 48e7d2413d..45b4da4608 100644 --- a/ide/miscoptions.pas +++ b/ide/miscoptions.pas @@ -178,7 +178,7 @@ begin ConfFileName:=SetDirSeparators(GetPrimaryConfigPath+'/'+MiscOptsFilename); CopySecondaryConfigFile(MiscOptsFilename); if (not FileExistsUTF8(ConfFileName)) then begin - DebugLn('NOTE: miscellaneous options file not found - using defaults'); + //DebugLn('Note: miscellaneous options file not found - using defaults'); end; FFilename:=ConfFilename; end;