-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Redis support #78
Redis support #78
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice addition.
Can you squash commits with same name, please ?
Is this blocking your CR? The end result should matter in the end everything will be squashed and merged to master in one commit! |
No. It's not blocking. It's the only comment I had. Personally I prefer "Rebase and Merge" for open source projects so that the commit log on Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice addition indeed. LGTM, Sotiris.
assert.Empty(t, buf.String()) | ||
buf.Reset() | ||
logger.Log(hclog.Trace, "123") | ||
assert.Contains(t, buf.String(), "DEBUG: 123") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be "TRACE: 123"
instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the consul logger and funny enough trace reports DEBUG
. The test is passing.
Which problem is this PR solving?
Closes #79.
Short description of the changes