Revision 0eea575a trunk/Pithos.ShellExtensions/FileContext.cs

b/trunk/Pithos.ShellExtensions/FileContext.cs
31 31
        {
32 32
            get
33 33
            {
34
                Trace.Write(String.Format("Managed path is {0}\r\n Current Path is {1}", PithosPath, CurrentFile));
34
                Debug.WriteLine( String.Format("Managed path is {0}\r\n Current Path is {1}", PithosPath, CurrentFile),LogCategories.Shell);
35 35
                return CurrentFolder.StartsWith(PithosPath, true, null);
36 36
            }
37 37
        }
......
56 56
            set
57 57
            {
58 58
                _currentFile = value.ToLower();
59
                Trace.Write(String.Format("File is {0}", _currentFile));
59
                Debug.WriteLine(String.Format("File is {0}", _currentFile), LogCategories.Shell);
60 60
                if (Directory.Exists(_currentFile))
61 61
                {
62 62
                    _currentFolder = _currentFile;

Also available in: Unified diff