Pull Request #9 Add log messages

This makes it possible to look at the logs to see if anything is going on
(previous versions would just be completely quiet if everything worked fine, and
wouldn't print errors to the logs in some cases).

Sarah Hodne avatar Sarah Hodne

Pull request event #27.1 passed

  • Ran for
AMD64
no language set
Git
The .travis.yml file used for this job is not available
Build Config
{
  "go": 1.7,
  "env": {
    "global": [
      "TRAVIS_COMMIT_SHORT=\"${TRAVIS_COMMIT:0:7}\""
    ]
  },
  "sudo": false,
  "addons": {
    "artifacts": {
      "paths": [
        "./build/linux/amd64/collectd-vsphere",
        "./build/darwin/amd64/collectd-vsphere"
      ],
      "target_paths": [
        "travis-ci/collectd-vsphere/$TRAVIS_BRANCH",
        "travis-ci/collectd-vsphere/$TRAVIS_COMMIT",
        "travis-ci/collectd-vsphere/$TRAVIS_COMMIT_SHORT"
      ]
    }
  },
  "script": [
    "make copyright",
    "git diff --exit-code",
    "git diff --cached --exit-code",
    "make crossbuild"
  ],
  "install": [
    "make prereqs",
    "make deps"
  ],
  "language": "go"
}