remove logging

This commit is contained in:
Kyle Spearrin 2018-01-15 23:32:37 -05:00
parent 962bd24974
commit 869446f7e7
1 changed files with 0 additions and 2 deletions

View File

@ -172,7 +172,6 @@ export default class AutofillService implements AutofillServiceInterface {
this.cipherService.updateLastUsedDate(options.cipher.id);
}
console.log('fill');
BrowserApi.tabSendMessage(tab, {
command: 'fillForm',
fillScript: fillScript,
@ -181,7 +180,6 @@ export default class AutofillService implements AutofillServiceInterface {
if (options.cipher.type !== CipherType.Login || totpPromise ||
(options.fromBackground && this.platformUtilsService.isFirefox()) || options.skipTotp ||
!options.cipher.login.totp || !this.tokenService.getPremium()) {
console.log('return early');
return;
}