Remove unnecessary logging

This commit is contained in:
David Baker 2019-12-10 17:56:50 +00:00
parent 8d3529787a
commit 680caed505

View File

@ -145,7 +145,6 @@ async function setupGlobals() {
// It's important to call `path.join` so we don't end up with the packaged asar in the final path. // It's important to call `path.join` so we don't end up with the packaged asar in the final path.
const iconFile = `riot.${process.platform === 'win32' ? 'ico' : 'png'}`; const iconFile = `riot.${process.platform === 'win32' ? 'ico' : 'png'}`;
iconPath = path.join(resPath, "img", iconFile); iconPath = path.join(resPath, "img", iconFile);
console.log("loading tray icon from " + iconPath);
trayConfig = { trayConfig = {
icon_path: iconPath, icon_path: iconPath,
brand: vectorConfig.brand || 'Riot', brand: vectorConfig.brand || 'Riot',