Skip to content

Commit

Permalink
log a little less
Browse files Browse the repository at this point in the history
  • Loading branch information
niik committed Jan 9, 2018
1 parent eee3988 commit e9f043b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions app/src/main-process/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ if (__WIN32__ && process.argv.length > 1) {
}

function handleAppURL(url: string) {
log.info(`Received protocol argument: ${url}`)
log.info('Processing protocol url')
const action = parseAppURL(url)
onDidLoad(window => {
// This manual focus call _shouldn't_ be necessary, but is for Chrome on
Expand Down Expand Up @@ -132,9 +132,7 @@ app.on('will-finish-launching', () => {
* path
*/
function handlePossibleProtocolLauncherArgs(args: ReadonlyArray<string>) {
log.info(
`Received possible protocol arguments: ${args.length} ${args.join(' ')}`
)
log.info(`Received possible protocol arguments: ${args.length}`)

if (__WIN32__) {
// We register our protocol handler callback on Windows as
Expand Down

0 comments on commit e9f043b

Please sign in to comment.