Skip to content

Commit

Permalink
Add some logging and release.
Browse files Browse the repository at this point in the history
  • Loading branch information
darron committed Nov 14, 2015
1 parent d21dec1 commit fe77646
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion commands/sifter.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ func decodeStdin(data string) (string, int64) {
var events ConsulEvent
err := json.Unmarshal([]byte(data), &events)
if err != nil {
fmt.Println("%#v", err)
Log(fmt.Sprintf("error: %s", data), "info")
os.Exit(1)
}
name := string(events.Name)
lTime := int64(events.LTime)
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
SIFTER_VERSION="0.5-dev"
SIFTER_VERSION="0.5"
echo $SIFTER_VERSION

0 comments on commit fe77646

Please sign in to comment.