Skip to content

Commit fdaf2d3

Browse files
committed
remove logs
1 parent 761a7e6 commit fdaf2d3

File tree

4 files changed

+0
-7
lines changed

4 files changed

+0
-7
lines changed

apps/learneth/src/redux/models/remixide.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,6 @@ const Model: ModelType = {
170170
(<any>window)._paq.push(['trackEvent', 'learneth', 'test_step', success])
171171
}
172172
} catch (err) {
173-
console.log('TESTING ERROR', err)
174173
yield put({
175174
type: 'remixide/save',
176175
payload: { errors: [String(err)]},

apps/remix-dapp/src/utils/txRunner.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,6 @@ export class TxRunner {
246246
}
247247

248248
let currentDateTime = new Date();
249-
const start = currentDateTime.getTime() / 1000;
250-
251249
try {
252250
const { transactionHash } = await web3.eth.sendTransaction(
253251
tx,
@@ -258,8 +256,6 @@ export class TxRunner {
258256
tx = await tryTillTxAvailable(transactionHash);
259257

260258
currentDateTime = new Date();
261-
const end = currentDateTime.getTime() / 1000;
262-
console.log('tx duration', end - start);
263259
return {
264260
receipt,
265261
tx,

apps/remix-ide/src/app/panels/tab-proxy.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ export default class TabProxy extends Plugin {
203203
}
204204

205205
focus (name) {
206-
console.log('focus', name)
207206
this.emit('switchApp', name)
208207
this.tabsApi.activateTab(name)
209208
}

apps/remix-ide/src/remixAppManager.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,6 @@ export class RemixAppManager extends PluginManager {
315315
return plugins.map(plugin => {
316316
if (plugin.name === 'dgit' && Registry.getInstance().get('platform').api.isDesktop()) { plugin.url = 'https://dgit4-76cc9.web.app/' }
317317
if (plugin.name === testPluginName) plugin.url = testPluginUrl
318-
//console.log('plugin', plugin)
319318
return new IframePlugin(plugin)
320319
})
321320
}

0 commit comments

Comments
 (0)