log
Contents
로그를 디버깅 화면에 출력한다.
options
필드 | 설명 | M/O |
---|---|---|
level | 로그 레벨을 설정한다.
| M |
message | 출력 메시지 | M |
successCallback
필드 | 설명 |
---|---|
없음 | 없음 |
errorCallback
필드 | 설명 |
---|---|
code | 에러코드 |
message | 에러메세지 |
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));
}
);
Error Code
Code | Cause | Comment |
---|---|---|
E12100 | 파라메터 값이 잘못되어 있을 경우 | |
E12101 | 전달된 액션 값이 알 수 없는 액션일 경우 | |
E12102 | 로그레벨 설정이 잘못되어 있을 경우 | |
E12103 | 출력할 메시지가 잘못되어 있을 경우 | |
E12050 | 실행 중 오류가 발생 되었을 경우 | |
E12099 | 알 수없는 오류가 발생 되었을 경우 | |