Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
T
TDLCloud
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
WitCloud
TDLCloud
Commits
ec5332a9
Commit
ec5332a9
authored
Dec 03, 2019
by
Carit Zhu
🎱
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify some console output as logger print for MqttListener.
parent
ec85cc9b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
MqttListener.java
src/main/java/com/example/tdl/mqtt/MqttListener.java
+3
-3
No files found.
src/main/java/com/example/tdl/mqtt/MqttListener.java
View file @
ec5332a9
...
...
@@ -80,18 +80,18 @@ public class MqttListener implements MqttCallback {
try
{
mqttAsyncClient
.
subscribe
(
listener_topic
,
mqttconfig
.
getQos
());
}
catch
(
MqttException
e
)
{
System
.
out
.
println
(
"Error
: "
+
e
.
getMessage
());
logger
.
error
(
"connection MqttException
: "
+
e
.
getMessage
());
}
}
@Override
public
void
onFailure
(
IMqttToken
iMqttToken
,
Throwable
throwable
)
{
System
.
out
.
println
(
"connection fail with client id"
);
logger
.
error
(
"connection fail with client id"
);
}
});
this
.
mqttAsyncClient
.
setCallback
(
this
);
}
catch
(
Exception
e
)
{
e
.
printStackTrace
(
);
logger
.
error
(
"mqtt initialize exception: "
+
e
.
getMessage
()
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment