Skip to content

Commit

Permalink
Merge pull request #1209 from samson0v/master
Browse files Browse the repository at this point in the history
Fixed OPC-UA remote logging
  • Loading branch information
imbeacon authored Oct 31, 2023
2 parents b857292 + 70860f1 commit c20efdb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thingsboard_gateway/connectors/opcua/opcua_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def __init__(self, gateway, config, connector_type):
self.__gateway = gateway
self._config = config
self.__server_conf = config.get("server")
self.setName(self._config.get("name", 'OPC-UA ' + ''.join(
choice(ascii_lowercase) for _ in range(5))) + " Connector")
self.setName(
self._config.get("name", 'OPC-UA ' + ''.join(choice(ascii_lowercase) for _ in range(5)) + " Connector"))
self._log = init_logger(self.__gateway, self.name, self._config.get('logLevel', 'INFO'))
self.__interest_nodes = []
self.__available_object_resources = {}
Expand Down

0 comments on commit c20efdb

Please sign in to comment.