Adding Logs

This commit is contained in:
Martin Karkowski 2021-10-18 08:03:00 +02:00
parent 2fdb4cc84f
commit d6f4dd4425

View File

@ -144,6 +144,7 @@ export class BeckhoffPlc extends BasePlcModule implements IPLCModule {
const _this = this; const _this = this;
this._logger = getNopeLogger("beckhoff-plc-interface-" + this.identifier); this._logger = getNopeLogger("beckhoff-plc-interface-" + this.identifier);
this._logger.warn("creating beckhoff-plc-interface-" + this.identifier);
// Initialize the default values: // Initialize the default values:
this.initialized.setContent(false); this.initialized.setContent(false);
@ -153,6 +154,7 @@ export class BeckhoffPlc extends BasePlcModule implements IPLCModule {
// Define a Beavior if the ads Options have been setted. // Define a Beavior if the ads Options have been setted.
this.adsOptions.subscribe((options) => { this.adsOptions.subscribe((options) => {
try { try {
this._logger.warn("Adapting ADS-Options to", options);
if (this._client) { if (this._client) {
this._logger.warn( this._logger.warn(
"ADS-Client " + _this.identifier + " is Running. Shutting Down." "ADS-Client " + _this.identifier + " is Running. Shutting Down."