File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
src/main/java/io/github/hapjava/services/impl Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ abstract class AbstractServiceImpl implements Service {
1616
1717 /** @param type unique UUID of the service according to HAP specification. */
1818 public AbstractServiceImpl (String type ) {
19- logger .info ("new service:" + type );
2019 this .type = type ;
2120 }
2221
@@ -32,7 +31,6 @@ public String getType() {
3231
3332 @ Override
3433 public List <Service > getLinkedServices () {
35- logger .info (" all linked service" + this .linkedServices );
3634 return Collections .unmodifiableList (linkedServices );
3735 }
3836
@@ -42,8 +40,6 @@ public void addCharacteristic(Characteristic characteristic) {
4240
4341 @ Override
4442 public void addLinkedService (Service service ) {
45- logger .info ("add linked service" + service );
4643 this .linkedServices .add (service );
47- logger .info (" all linked service" + this .linkedServices );
4844 }
4945}
You can’t perform that action at this time.
0 commit comments