Skip to content

Commit

Permalink
More closely match fallback log output to other scripts
Browse files Browse the repository at this point in the history
Previously it wasn't clear that the "[+] ..." message was another setup
script confirmation - it could easily be interpreted as some kind of
error.
  • Loading branch information
pimterry committed Nov 14, 2023
1 parent 4a49297 commit 90ebd19
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions android/android-certificate-unpinning-fallback.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,10 @@ Java.perform(function () {
});
})

console.log('[+] TLS error auto-patcher');
console.log('== Unpinning fallback auto-patcher installed ==');
} catch (err) {
console.log(err);
console.log('[ ] TLS error auto-patcher');
console.error(err);
console.error(' !!! --- Unpinning fallback auto-patcher installation failed --- !!!');
}

});

0 comments on commit 90ebd19

Please sign in to comment.