()
| 88 | * open the log file |
| 89 | */ |
| 90 | export function openLog() { |
| 91 | var logObj = saveLog.transports.file.getFile(); |
| 92 | console.warn(logObj, "log getFile"); |
| 93 | if (typeof logObj.path != "undefined") { |
| 94 | try { |
| 95 | execShell("open " + logObj.path); |
| 96 | } catch (e) { |
| 97 | saveLog.error(e, "log getFile error"); |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * notice the system error |
nothing calls this directly
no test coverage detected