Skip to content

Commit ca66c56

Browse files
committed
- remove unused log
- bump version
1 parent a370c05 commit ca66c56

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Change Logs
22

3+
## v2.4.1
4+
5+
- remove unused log
6+
7+
38
## v2.4.0
49

510
- add 1034 `user not found`

dist/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@
6565
} else {
6666
this.payload = id;
6767
}
68-
console.log("~>", this.payload, id);
6968
if (!this.message) {
7069
this.message = (that = idmap[this.id || 0])
7170
? that

dist/index.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dist/**/*"
99
],
1010
"description": "simple wrapper for Error Object",
11-
"version": "2.4.0",
11+
"version": "2.4.1",
1212
"homepage": "https://github.com/loadingio/lderror",
1313
"repository": {
1414
"type": "git",

src/lde.ls

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ lderror = (opt="", id = 0) ->
5454
@id = opt
5555
if typeof(id) == \string => @message = id
5656
else @payload = id
57-
console.log "~>", @payload, id
5857
if !(@message) =>
5958
@message = if idmap[@id or 0] => that
6059
else if @id >= 100 and @id < 600 => "http code: #{@id}"

0 commit comments

Comments
 (0)