You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
println(stderr, "=> Error: detecting primary memory features failed. Using default features.")
642
-
println(stderr, " You can setup primary memory features manually.")
643
+
catch
644
+
@warn"Memory detection failed."
645
+
@info"Detection of memory features failed. Using default features. You can setup manually."
643
646
644
647
returncollectMemoryFeaturesDefault()
645
648
end
@@ -692,10 +695,12 @@ function identifyStorage()
692
695
i = i +1
693
696
end
694
697
end
695
-
catch error
696
-
println(stderr, "fail.")
697
-
println(stderr, "=> Error: detection of storage features failed. Using default features.")
698
-
println(stderr, " You can setup storage features manually.")
698
+
699
+
@info"Storage detection successfull."
700
+
701
+
catch
702
+
@warn"Storage detection failed."
703
+
@info"Detection of storage features failed. Using default features. You can setup manually."
699
704
700
705
# default
701
706
storage_features["storage_type"] ="unset"
@@ -712,9 +717,9 @@ end
712
717
#TODO
713
718
functionidentityInterconnection()
714
719
715
-
println(stderr, "fail.")
716
-
println(stderr, "=> Note: detection of interconnection features (cluster computing) not yet implemented. Using default features. You can setup manually.")
717
-
println(stderr, "You can setup interconnection features manually.")
720
+
@warn"Interconnection detection failed"
721
+
@info"Detection of interconnection features (for cluster computing) not yet implemented. Using default features."
722
+
@info"You can setup interconnection features manually."
718
723
719
724
interconnection_features =Dict()
720
725
@@ -742,11 +747,15 @@ function identifyNode()
742
747
node_features["node_vcpus_count"] ="unset"
743
748
744
749
for p insubtypes(CloudProvider)
745
-
print(stderr, string(p)*"?")
750
+
@info"Checking $(string(p)) provider."
746
751
ok =getNodeFeatures(p, node_features)
747
-
if (isnothing(ok)) print(stderr, "No") elseprint(stderr, "Yes") end; print(stderr, ", ")
0 commit comments