Skip to content

Commit

Permalink
Prints on tech tools
Browse files Browse the repository at this point in the history
  • Loading branch information
guyshe-jfrog committed Feb 4, 2024
1 parent 5e828b6 commit 437410c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions utils/coreutils/techutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,11 @@ func (tech Technology) GetPackageInstallationCommand() string {
}

func (tech Technology) ApplicabilityScannable() bool {
print("Is it scannable?\n")
print(tech)
print("\ntechnologiesData[tech].applicabilityScannable\n")
print(technologiesData[tech].applicabilityScannable)
print("\n")
return technologiesData[tech].applicabilityScannable
}

Expand Down Expand Up @@ -471,6 +476,9 @@ func GetAllTechnologiesList() (technologies []Technology) {

func ContainsApplicabilityScannableTech(technologies []Technology) bool {
for _, technology := range technologies {
print("technology\n")
print(technology)
print("\n")
if technology.ApplicabilityScannable() {
return true
}
Expand Down

0 comments on commit 437410c

Please sign in to comment.