Skip to content

Commit

Permalink
Added missing console.info() - see #1462
Browse files Browse the repository at this point in the history
  • Loading branch information
klein0r committed Jan 2, 2024
1 parent 80f1c2f commit 51316e7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ Since v5.5.0 of the JavaScript adapter the following locations (relative to the
<!--
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**

* (klein0r) Added missing console.info()

### 7.6.0 (2023-12-26)

* (klein0r) Added schedules by state value (scheduleById)
Expand Down
3 changes: 3 additions & 0 deletions lib/sandbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -3820,6 +3820,9 @@ function sandBox(script, name, verbose, debug, context) {
warn: function (msg) {
sandbox.log(msg, 'warn');
},
info: function (msg) {
sandbox.log(msg, 'info');
},
debug: function (msg) {
sandbox.log(msg, 'debug');
}
Expand Down

0 comments on commit 51316e7

Please sign in to comment.