Skip to content
This repository was archived by the owner on Nov 28, 2018. It is now read-only.

Commit 50fc5e8

Browse files
committed
fix bug
1 parent 1e55cda commit 50fc5e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/stomp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ function Stomp(args) {
251251
this.debug = args['debug'];
252252
this.login = args['login'] || null;
253253
this.passcode = args['passcode'] || null;
254-
this.log = new StompLogging(this.debug);
254+
this.log = new stomp_utils.StompLogging(this.debug);
255255
this._subscribed_to = {};
256256
this.session = null;
257257
this.ssl = args['ssl'] ? true : false;

0 commit comments

Comments
 (0)