本文整理匯總了TypeScript中main/logger.mainLogger.info方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript mainLogger.info方法的具體用法?TypeScript mainLogger.info怎麽用?TypeScript mainLogger.info使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類main/logger.mainLogger
的用法示例。
在下文中一共展示了mainLogger.info方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: getTray
export function getTray(store: Store): Electron.Tray {
if (!tray) {
const iconPath = getImagePath(`tray/${env.appName}.png`);
mainLogger.info(`Using tray image (${iconPath})`);
let iconImage = nativeImage.createFromPath(iconPath);
let onKDE = process.env.XDG_CURRENT_DESKTOP === "KDE";
if (process.platform === "win32") {
// cf. https://github.com/itchio/itch/issues/462
// windows still displays a 16x16, whereas
// some linux DEs don't know what to do with a @x2, etc.
iconImage = iconImage.resize({
width: 16,
height: 16,
});
} else if (onKDE) {
// KDE can't handle a 256x256 png apparently
iconImage = iconImage.resize({
width: 24,
height: 24,
});
}
tray = new Tray(iconImage);
tray.setToolTip(env.appName);
tray.on("click", () => {
store.dispatch(actions.focusWind({ wind: "root", toggle: true }));
});
tray.on("double-click", () => {
store.dispatch(actions.focusWind({ wind: "root" }));
});
tray.on("balloon-click", () => {
if (lastNotificationAction) {
store.dispatch(lastNotificationAction);
}
});
}
return tray;
}
示例2: main
export function main() {
mainLogger.info(
`${env.appName}@${app.getVersion()} on electron@${
process.versions.electron
} in ${env.production ? "production" : "development"}`
);
if (process.env.CAPSULE_LIBRARY_PATH) {
// disable acceleration when captured by capsule
app.disableHardwareAcceleration();
} else {
try {
const prefs = loadPreferencesSync();
if (prefs.disableHardwareAcceleration) {
app.disableHardwareAcceleration();
}
} catch (e) {
// oh well
}
}
if (env.production) {
app.enableMixedSandbox();
}
// cf. https://github.com/itchio/itch/issues/2026
app.commandLine.appendSwitch("ignore-connections-limit", "127.0.0.1");
if (process.env.ITCH_IGNORE_CERTIFICATE_ERRORS === "1") {
app.commandLine.appendSwitch("ignore-certificate-errors");
}
protocol.registerStandardSchemes(["itch-cave", "itch"]);
let store: Store = require("main/store").default;
let onReady = () => {
if (!env.integrationTests) {
const shouldQuit = app.makeSingleInstance((argv, cwd) => {
// we only get inside this callback when another instance
// is launched - so this executes in the context of the main instance
store.dispatch(
actions.processUrlArguments({
args: argv,
})
);
store.dispatch(actions.focusWind({ wind: "root" }));
});
if (shouldQuit) {
app.exit(0);
return;
}
}
store.dispatch(
actions.processUrlArguments({
args: process.argv,
})
);
globalShortcut.register("Control+Alt+Backspace", function() {
store.dispatch(actions.forceCloseLastGame({}));
});
// Emitted when the application is activated. Various actions can trigger
// this event, such as launching the application for the first time,
// attempting to re-launch the application when it's already running, or
// clicking on the application's dock or taskbar icon.
app.on("activate", () => {
store.dispatch(actions.focusWind({ wind: "root" }));
});
app.on("before-quit", e => {
e.preventDefault();
store.dispatch(actions.quit({}));
});
store.dispatch(actions.preboot({}));
setInterval(() => {
try {
store.dispatch(actions.tick({}));
} catch (e) {
mainLogger.error(`While dispatching tick: ${e.stack}`);
}
}, 1 * 1000 /* every second */);
};
app.on("ready", onReady);
app.on("will-finish-launching", () => {
app.setAppUserModelId(appUserModelId);
});
// macOS (Info.pList)
app.on("open-url", (e: Event, url: string) => {
if (isItchioURL(url)) {
// otherwise it'll err -600
e.preventDefault();
store.dispatch(actions.handleItchioURI({ uri: url }));
}
});
//.........這裏部分代碼省略.........