1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Improve log output

This commit is contained in:
Ewout Prangsma 2018-03-27 10:31:38 +02:00
parent 0070a4457b
commit 779772d155
No known key found for this signature in database
GPG key ID: 4DBAD380D93D0698

View file

@ -36,9 +36,15 @@ def fetchParamsFromGitLog() {
def key = opt.substring(0, idx);
def value = opt.substring(idx+1).replaceAll('^\"|\"$', '');
myParams[key] = value;
println("Overwriting myParams.${key} with ${value}");
//println("Overwriting myParams.${key} with ${value}");
}
}
// Show params in log
for (entry in myParams) {
println("Using myParams.${entry.key} with ${entry.value}");
}
return myParams;
}