Index: src/libchcore/TTaskBaseData.h
===================================================================
diff -u -N -rb26ced3298e3e7e51d91f3ac70b56746786da83b -re98c03b108baad889dfd7c7fbb1a49f5ea5a55d8
--- src/libchcore/TTaskBaseData.h	(.../TTaskBaseData.h)	(revision b26ced3298e3e7e51d91f3ac70b56746786da83b)
+++ src/libchcore/TTaskBaseData.h	(.../TTaskBaseData.h)	(revision e98c03b108baad889dfd7c7fbb1a49f5ea5a55d8)
@@ -38,9 +38,6 @@
 		ETaskCurrentState GetCurrentState() const;
 		void SetCurrentState(ETaskCurrentState eCurrentState);
 
-		TSmartPath GetLogPath() const;
-		void SetLogPath(const TSmartPath& pathLog);
-
 		TSmartPath GetDestinationPath() const;
 		void SetDestinationPath(const TSmartPath& pathDst);
 
@@ -55,7 +52,6 @@
 			eMod_Added,
 			eMod_TaskName,
 			eMod_CurrentState,
-			eMod_LogPath,
 			eMod_DstPath,
 
 			eMod_Last
@@ -68,7 +64,6 @@
 
 		TSharedModificationTracker<TString, ModBitSet, eMod_TaskName> m_strTaskName;
 		TSharedModificationTracker<volatile ETaskCurrentState, ModBitSet, eMod_CurrentState> m_eCurrentState;     // current state of processing this task represents
-		TSharedModificationTracker<TSmartPath, ModBitSet, eMod_LogPath> m_pathLog;
 		TSharedModificationTracker<TSmartPath, ModBitSet, eMod_DstPath> m_pathDestinationPath;
 #pragma warning(pop)
 	};