log
Contents
로그를 디버깅 화면에 출력한다.
options
필드 | 설명 |
---|---|
level | 로그 레벨을 설정한다.
|
message | 출력 메시지 |
successCallback
필드 | 설명 |
---|---|
없음 | 없음 |
errorCallback
필드 | 설명 |
---|---|
없음 | 없음 |
Example
var level = "debug";
var message = "helloworld";
hone.channel.execute('log', 'print', [level, message],
function () {
}, function (e) {
alert(JSON.stringify(e));
}
);
var message = "helloworld";
hone.channel.execute('log', 'print', [level, message],
function () {
}, function (e) {
alert(JSON.stringify(e));
}
);