* @brief Log technical explanation, in English, of script error */
| 321 | * @brief Log technical explanation, in English, of script error |
| 322 | */ |
| 323 | static void |
| 324 | ScriptletError(const String & scriptletFilepath, const tchar_t *szError) |
| 325 | { |
| 326 | String msg = _T("Plugin scriptlet error <") |
| 327 | + scriptletFilepath |
| 328 | + _T("> ") |
| 329 | + szError; |
| 330 | RootLogger::Error(msg); |
| 331 | } |
| 332 | |
| 333 | static String |
| 334 | Decode(const String& text) |