Skip to content

Commit e861a75

Browse files
committed
removed console.warn
1 parent 9bf7ccd commit e861a75

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

signaturenDruck/js/renderer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const _ = require('lodash')
99
const fs = require('fs')
1010

1111
// required for ipc calls to the main process
12-
const {ipcMain, ipcRenderer, remote} = require('electron')
12+
const { ipcMain, ipcRenderer, remote } = require('electron')
1313

1414
const config = remote.getGlobal('config')
1515
const sigJSONFile = remote.getGlobal('sigJSONFile')
@@ -147,7 +147,7 @@ function closeButton () {
147147
// gathers the data to print and invokes printing via ipc
148148
function printButton () {
149149
const print = new p(sigJSONFile, table.formats, table.manualSignature)
150-
console.warn(print.dataAll)
150+
// console.warn(print.dataAll)
151151
ipcRenderer.send('print', print.dataAll)
152152
}
153153

0 commit comments

Comments
 (0)