@@ -33,7 +33,7 @@ public class DataRepository : IRepository
3333
3434 public DataRepository ( IGeoDatabaseService databaseService , IFileDialogService fileDialogService )
3535 {
36- Logger . Current . Debug ( "In DataRepository" ) ;
36+ Logger . Current . Trace ( "In DataRepository" ) ;
3737 if ( databaseService == null ) throw new ArgumentNullException ( "databaseService" ) ;
3838
3939 _databaseService = databaseService ;
@@ -93,7 +93,7 @@ public IEnumerable<TmsProvider> DefaultTmsProviders
9393
9494 public void AddFolderLink ( )
9595 {
96- Logger . Current . Debug ( "In AddFolderLink" ) ;
96+ Logger . Current . Trace ( "In AddFolderLink" ) ;
9797 string path ;
9898 if ( _fileDialogService . ChooseFolder ( string . Empty , out path ) )
9999 {
@@ -126,7 +126,7 @@ public void RemoveFolderLink(string path, bool silent)
126126
127127 public void AddConnectionWithPrompt ( GeoDatabaseType ? databaseType = null )
128128 {
129- Logger . Current . Debug ( "In AddConnectionWithPrompt" ) ;
129+ Logger . Current . Trace ( "In AddConnectionWithPrompt" ) ;
130130 var connection = _databaseService . PromptUserForConnection ( databaseType ) ;
131131 if ( connection != null )
132132 {
@@ -136,7 +136,7 @@ public void AddConnectionWithPrompt(GeoDatabaseType? databaseType = null)
136136
137137 public void AddConnection ( DatabaseConnection connection )
138138 {
139- Logger . Current . Debug ( "In AddConnection" ) ;
139+ Logger . Current . Trace ( "In AddConnection" ) ;
140140 if ( connection == null )
141141 {
142142 throw new ArgumentNullException ( "connection" ) ;
@@ -195,7 +195,7 @@ public void ClearWmsServers()
195195
196196 private void AddDefautlTmsProviders ( IAppContext context )
197197 {
198- Logger . Current . Debug ( "Start AddDefautlTmsProviders" ) ;
198+ Logger . Current . Trace ( "Start AddDefautlTmsProviders" ) ;
199199 foreach ( var p in context . Map . Tiles . Providers . Where ( p => ! p . Custom ) )
200200 {
201201 if ( p . Name . StartsWithIgnoreCase ( "google" ) )
@@ -216,7 +216,7 @@ private void AddDefautlTmsProviders(IAppContext context)
216216
217217 _defaultTmsProviders . Add ( provider ) ;
218218 }
219- Logger . Current . Debug ( "End AddDefautlTmsProviders" ) ;
219+ Logger . Current . Trace ( "End AddDefautlTmsProviders" ) ;
220220 }
221221
222222 private void AddRootFolders ( )
@@ -262,7 +262,7 @@ private bool HasFolder(string path)
262262
263263 private void Init ( )
264264 {
265- Logger . Current . Debug ( "Start DataRepository.Init()" ) ;
265+ Logger . Current . Trace ( "Start DataRepository.Init()" ) ;
266266 _folders = new List < string > ( ) ;
267267
268268 ExpandedFolders = new List < string > ( ) ;
@@ -284,7 +284,7 @@ private void Init()
284284 new RepositoryGroup ( TmsProvider . DefaultGroupId , "Default" ) ,
285285 new RepositoryGroup ( TmsProvider . CustomGroupId , "Custom" )
286286 } ;
287- Logger . Current . Debug ( "End DataRepository.Init()" ) ;
287+ Logger . Current . Trace ( "End DataRepository.Init()" ) ;
288288 }
289289 }
290290}
0 commit comments