Commit ae51086d23f7271239db8bd662abeffd91847cdd

Authored by Adhidarma Hadiwinoto
1 parent 40c4d6619d
Exists in master

Debug

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

... ... @@ -26,9 +26,11 @@ for (let i=0; i < hostsCount; i++) {
26 26 else {
27 27  
28 28 if (isIp(URL.parse(host.host).hostname)) {
  29 + console.log('Register ' + host.host + ' without SSL')
29 30 redbird.register(host.host, host.target, optionsWoSSL);
30 31 }
31 32 else {
  33 + console.log('Register ' + host.host + ' with SSL if exists');
32 34 redbird.register(host.host, host.target, options);
33 35 }
34 36