Skip to content
This repository has been archived by the owner on Jan 26, 2020. It is now read-only.

Commit

Permalink
fix printBriefly method
Browse files Browse the repository at this point in the history
  • Loading branch information
gokberkakdeniz committed Aug 5, 2019
1 parent 11c4eff commit fc9de9d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ module.exports = new function () {
console.log("=================================================")
}
this.printBriefly = () => {
logger.info("wupd: v" + CONSTANTS.APP_VERSION)
logger.info("electron: " + CONSTANTS.ELECTRON_VERSION)
logger.info("chromium: " + CONSTANTS.CHROMIUM_VERSION)
logger.info("os: " + CONSTANTS.PLATFORM)
if (process.platform === "linux") logger.info("de: " + CONSTANTS.LINUX_DESKTOP_ENVIRONMENT)
logger.info("arch: " + CONSTANTS.ARCH)
logger.info("wupd: v" + this.APP_VERSION)
logger.info("electron: " + this.ELECTRON_VERSION)
logger.info("chromium: " + this.CHROMIUM_VERSION)
logger.info("os: " + this.PLATFORM)
if (process.platform === "linux") logger.info("de: " + this.LINUX_DESKTOP_ENVIRONMENT)
logger.info("arch: " + this.ARCH)
}
}

0 comments on commit fc9de9d

Please sign in to comment.