Skip to content

Commit

Permalink
more console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettdieckmann committed Oct 11, 2018
1 parent 5b02c23 commit e1b436a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Binary file modified dist/f5-cloud-libs.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/verifyHash
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cli script /Common/verifyHash {
proc script::run {} {
if {[catch {
set hashes(f5-cloud-libs.tar.gz) 814f926fdbcd64bed15bbe18711dabca94b796fec68c1725f24785aa683ffcf008710cfe958127769b100216980523daeed42c3abd03a24826940ae549b1c2c3
set hashes(f5-cloud-libs.tar.gz) e1bc89de9009afe9da7d94eef6318e8e597ae1c1323cd1bba3c788005ce56b18cfcc04a2a953af0020bd1112ada087fd3211f810d7b183dedfc4c999f68e4cdc
set hashes(f5-cloud-libs-aws.tar.gz) 05c59939f9a98c53ac38869bf1fef3ee9d345537119ff0a161381829a0e10e12bc524ee703746185a5566b43342e641bed5884c391c28b98c7c1507730683292
set hashes(f5-cloud-libs-azure.tar.gz) 9fb24b60be2d4ac4ba99f4b4f9ca5c0b0adbc074ecd8778e167f5c560f43024d18a81dfce3b8b10c6b89f5f1e13daf0151b4dc9f2754700ca528db6df6357987
set hashes(f5-cloud-libs-gce.tar.gz) 67e9fef439851ad4f9fbaf3f3574dadb2fceea0b13a77ccde41bcf31c42f87d6c37c64d50d685fc9a90acedc8c80abee9114b9a232809f36746bdc8e1de1b22a
Expand Down
6 changes: 5 additions & 1 deletion lib/bigIpCluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ BigIpCluster.prototype.addToTrust = function addToTrust(
const retry = retryOptions || util.DEFAULT_RETRY;

const func = function () {
console.log('this is:');
console.log(this);
console.log('func() called from addTruct() - with console.log');
return this.core.ready()
.then(() => {
Expand Down Expand Up @@ -119,7 +121,9 @@ BigIpCluster.prototype.addToTrust = function addToTrust(
return q(data);
})
.catch((err) => {
this.logger.info(`Add to trust failed: ${err.message ? err.message : err}`);
// this.logger.info(`Add to trust failed: ${err.message ? err.message : err}`);
console.log('Got err');
console.log(err);
return q.reject(err);
});
};
Expand Down

0 comments on commit e1b436a

Please sign in to comment.