69_SoftliqCloud.pm: Suppress "Opening..." message. (Requires update of FHEM DevIO as well)

git-svn-id: https://svn.fhem.de/fhem/trunk@24177 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
KernSani
2021-04-07 18:51:23 +00:00
parent 6f2c3c5704
commit bc19acb06c

View File

@@ -21,6 +21,7 @@
#
##############################################################################
# Changelog:
# 0.1.02: Suppress Log message "opening device..."
# 0.1.01: Small Fix to avoid "garbage" leading to invalid JSON
# 0.1.00: Initial Release
##############################################################################
@@ -48,7 +49,7 @@ use utf8;
use Digest::MD5 qw(md5);
my $version = "0.1.01";
my $version = "0.1.02";
my $missingModul = '';
eval 'use MIME::Base64::URLSafe;1' or $missingModul .= 'MIME::Base64::URLSafe ';
@@ -1656,6 +1657,7 @@ sub wsConnect2 {
#$hash->{DeviceName} = $url;
$hash->{DeviceName} = 'wss:' . $host . ':' . $port . $path;
$hash->{SSL} = 1;
$hash->{devioLoglevel} = LOG_RECEIVE;
DevIo_OpenDev( $hash, 0, "FHEM::Gruenbeck::SoftliqCloud::wsStart", "FHEM::Gruenbeck::SoftliqCloud::wsFail" );
return;