Replace 'console.log' with 'beef.debug'

This commit is contained in:
Brendan Coles
2015-02-07 05:35:09 +00:00
parent 73e16e4aff
commit f5d2c2028b
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ beef.execute(function() {
// Grep the SDP data for IP address data
rtc.onicecandidate = function (evt) {
if (evt.candidate){
console.log("a="+evt.candidate.candidate);
beef.debug("a="+evt.candidate.candidate);
grepSDP("a="+evt.candidate.candidate);
}
};