本文整理汇总了TypeScript中@wireapp/commons.LogFactory类的典型用法代码示例。如果您正苦于以下问题:TypeScript LogFactory类的具体用法?TypeScript LogFactory怎么用?TypeScript LogFactory使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了LogFactory类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: async
contents.on('console-message', async (event, level, message) => {
const webViewId = getWebViewId(contents);
if (webViewId) {
const logFilePath = path.join(app.getPath('userData'), 'logs', webViewId, config.LOG_FILE_NAME);
try {
await LogFactory.writeMessage(message, logFilePath);
} catch (error) {
logger.log(`Cannot write to log file "${logFilePath}": ${error.message}`, error);
}
}
});
示例2: getLogger
function getLogger(name: string): logdown.Logger {
const options: LoggerOptions = {
namespace: LOGGER_NAMESPACE,
separator: '/',
};
if (ENABLE_LOGGING) {
options.forceEnable = true;
}
return LogFactory.getLogger(name, options);
}
示例3: CustomProtocolHandler
// Paths
const APP_PATH = app.getAppPath();
const INDEX_HTML = path.join(APP_PATH, 'renderer/index.html');
const LOG_DIR = path.join(app.getPath('userData'), 'logs');
const LOG_FILE = path.join(LOG_DIR, 'electron.log');
const PRELOAD_JS = path.join(APP_PATH, 'dist/renderer/preload.js');
const PRELOAD_RENDERER_JS = path.join(APP_PATH, 'renderer/static/webview-preload.js');
const WRAPPER_CSS = path.join(APP_PATH, 'css/wrapper.css');
const WINDOW_SIZE = {
DEFAULT_HEIGHT: 768,
DEFAULT_WIDTH: 1024,
MIN_HEIGHT: 512,
MIN_WIDTH: 760,
};
const logger = LogFactory.getLogger(__filename, {forceEnable: true, logFilePath: LOG_FILE});
const customProtocolHandler = new CustomProtocolHandler();
// Config
const argv = minimist(process.argv.slice(1));
const BASE_URL = EnvironmentUtil.web.getWebappUrl(argv.env);
// Icon
const ICON = `wire.${EnvironmentUtil.platform.IS_WINDOWS ? 'ico' : 'png'}`;
const ICON_PATH = path.join(APP_PATH, 'img', ICON);
let tray: TrayHandler;
let isFullScreen = false;
let isQuitting = false;
let main: BrowserWindow;
示例4: constructor
constructor() {
this.logger = LogFactory.getLogger('ElectronWrapperInit', {logFilePath: path.join(LOG_DIR, 'electron.log')});
}
示例5: Promise
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see http://www.gnu.org/licenses/.
*
*/
import {LogFactory, ValidationUtil} from '@wireapp/commons';
import {app, webContents} from 'electron';
import * as fs from 'fs-extra';
import * as path from 'path';
const USER_DATA_DIR = app.getPath('userData');
const LOG_DIR = path.join(USER_DATA_DIR, 'logs');
const logger = LogFactory.getLogger(__filename, {logFilePath: path.join(LOG_DIR, 'electron.log')});
const clearStorage = (session: Electron.Session) => {
return new Promise(resolve =>
session.clearStorageData({}, () =>
session.clearCache(() => {
session.flushStorageData();
resolve();
})
)
);
};
export async function deleteAccount(id: number, accountId: string, partitionId?: string) {
// Delete session data
try {