Commit 5060dec0 authored by Gino Tosti's avatar Gino Tosti
Browse files

changed BaciHelper to be compliant with the new opcua library version 2020.10.26

parent ac3f789f
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -16,5 +16,9 @@
	<classpathentry kind="lib" path="lib/TCSHardwareController.jar"/>
	<classpathentry kind="lib" path="lib/TCSHardwareDevice.jar"/>
	<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/TESTINT"/>
	<classpathentry kind="lib" path="lib/Opc.Ua.Stack-1.02.337.8.jar"/>
	<classpathentry kind="lib" path="lib/opcua-da-acs-2020.10.26.jar"/>
	<classpathentry kind="lib" path="lib/prosys-opc-ua-sdk-client-server-4.4.2-1266.jar"/>
	<classpathentry kind="lib" path="lib/uadaextensions.jar"/>
	<classpathentry kind="output" path="bin"/>
</classpath>
+4 −1
Original line number Diff line number Diff line
@@ -2,7 +2,10 @@
bin/
man/
lib/

!lib/prosys-opc-ua-sdk-client-server-4.4.2-1266.jar
!lib/opcua-da-acs-2020.10.26.jar 
!lib/Opc.Ua.Stack-1.02.337.8.jar
!lib/uadaextensions.jar
# Log file
*.log

+27 −0
Original line number Diff line number Diff line
# Default logging level, log on console only (add ',file' to log on file as well)
log4j.rootLogger=INFO, console, file

# Server messages
log4j.logger.cta.acs=DEBUG
log4j.logger.cta.acs.opcua.da=DEBUG

# Prosys SDK messages
log4j.logger.com.prosysopc.ua=INFO

# UA Stack messages
log4j.logger.org.opcfoundation.ua=INFO

# console Logger 
log4j.appender.console=org.apache.log4j.ConsoleAppender
log4j.appender.console.layout=org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=%d{MM/dd/yyyy HH:mm:ss.SSS} %-5p [%t] %47c %3x - %m%n

# file Logger 
log4j.appender.file=org.apache.log4j.FileAppender
log4j.appender.file.file=logs/server.log
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=%d{MM/dd/yyyy HH:mm:ss.SSS} %-5p [%t] %37c %3x - %m%n


# log4j.logger.cta.acs.opcua.da=TRACE
log4j.logger.cta.acs.opcua.da=ERROR
+1.27 MiB

File added.

No diff preview for this file type.

+71.8 KiB

File added.

No diff preview for this file type.

Loading