Skip to content

Commit

Permalink
Fix accidental delete during commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshpolansky committed Dec 4, 2023
1 parent 20efc90 commit 0185dad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/HMI/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@loupeteam/tmplits",
"version": "0.0.11",
"version": "0.0.12",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions src/HMI/tmplits.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ else {
window.$ = window.jQuery = jqueryImport;
}

let log = function (t) { if (Tmplits.debug.loglevel == 0) { console.log(t) } };
let warn = function (t) { if (Tmplits.debug.loglevel <= 1) { console.warn(t) } };
let error = function (t) { if (Tmplits.debug.loglevel <= 2) { console.error(t) } };


export class Tmplits {
constructor(node_module_directory, loadedCallback) {
Expand Down

0 comments on commit 0185dad

Please sign in to comment.