Skip to content

Commit

Permalink
Fix logging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
muffinista committed Feb 23, 2018
1 parent 622fe6d commit 27239a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log


## [v0.9.23](https://github.com/muffinista/before-dawn/tree/v0.9.23) (2018-02-23)

- Fix logging issue

## [v0.9.22](https://github.com/muffinista/before-dawn/tree/v0.9.22) (2018-02-22)

- Fix issue where screensaver package would be downloaded twice at the
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "before-dawn",
"productName": "Before Dawn",
"version": "0.9.22",
"version": "0.9.23",
"description": "A desktop screensaver app using web technologies",
"author": "Colin Mitchell <[email protected]> (http://muffinlabs.com)",
"license": "MIT",
Expand Down
2 changes: 0 additions & 2 deletions src/lib/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ module.exports = function Package(_attrs) {
};

request(opts).on("error", function(err) {
this.logger(err);
cb(err);
}).on("response", function(r) {
_resp = r;
Expand All @@ -128,7 +127,6 @@ module.exports = function Package(_attrs) {
// clean out existing files
//
try {
this.logger("remove stuff from " + self.dest);
rimraf.sync(self.dest);
}
catch (err) {
Expand Down

0 comments on commit 27239a3

Please sign in to comment.