Skip to content

Commit 003795b

Browse files
minor change of log output from debug to trace
1 parent 1a0edc9 commit 003795b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/mavsdk/src/main/java/io/mavsdk/System.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class System {
2626
/**
2727
* Create a System object, initializing the plugins and connecting them to mavsdk_server.
2828
*
29-
* This defaults to a mavsdk_server running on localhost:50051.
29+
* <p>This defaults to a mavsdk_server running on localhost:50051.</p>
3030
*/
3131
public System() {
3232
this("localhost", 50051);

sdk/templates/file.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class {{ plugin_name.upper_camel_case }} {
3131
}
3232

3333
private static ManagedChannel createChannel(String host, int port) {
34-
logger.debug("Building channel to " + host + ":" + port);
34+
logger.trace("Building channel to " + host + ":" + port);
3535

3636
return OkHttpChannelBuilder.forAddress(host, port)
3737
.usePlaintext()

0 commit comments

Comments
 (0)