From 71ac49edf8317c963f2308d7b551689a1aa67867 Mon Sep 17 00:00:00 2001 From: gjsjohnmurray Date: Mon, 18 Nov 2024 13:29:54 +0000 Subject: [PATCH] Fix bug on linux platform --- intersystems-iris-native/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intersystems-iris-native/index.js b/intersystems-iris-native/index.js index b3bd3b1..08ef182 100644 --- a/intersystems-iris-native/index.js +++ b/intersystems-iris-native/index.js @@ -17,7 +17,7 @@ if (process.platform == "win32" && process.arch == "x64") { } } else if (process.platform == "linux") { let distro = getLinuxDistro() - logChannel.debug('platform = ' + process.platform + ': ' + distro + ': ' + process.arch); + console.log('intersystems-iris-native:index.js(linux): platform = ' + process.platform + ': ' + distro + ': ' + process.arch); if (distro == 'ubuntu') { if (process.arch == "x64") { native = require('./bin/lnxubuntux64/irisnative.node');