Home
last modified time | relevance | path

Searched refs:cachedLogFilePath (Results 1 – 1 of 1) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/RobotFrameworkEngine/
DRenodeKeywords.cs377 if(cachedLogFilePath == null) in EnableLoggingToCache()
379 cachedLogFilePath = Path.Combine( in EnableLoggingToCache()
382 … Logger.AddBackend(new FileBackend(cachedLogFilePath, false), CachedLogBackendName, true); in EnableLoggingToCache()
389 if(cachedLogFilePath == null) in SaveCachedLog()
395 System.IO.File.Copy(cachedLogFilePath, filePath, true); in SaveCachedLog()
401 if(cachedLogFilePath != null) in ClearCachedLog()
404 System.IO.File.Delete(cachedLogFilePath); in ClearCachedLog()
405 cachedLogFilePath = null; in ClearCachedLog()
433 private string cachedLogFilePath; field in Antmicro.Renode.RobotFramework.RenodeKeywords