-
Notifications
You must be signed in to change notification settings - Fork 45
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
Set verbose as the default behavior #250
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.
Instead of non-verbose
let's rename the flag to something like concise
or terse
or brief
. Or keep it as verbose
and just change the default to true.
@@ -129,7 +134,7 @@ def get_response( | |||
def file_event_handler(say, files, team_id, user_id, thread_ts, question): | |||
if files[0]["size"] > cfg.FILE_SIZE_LIMIT: | |||
say( | |||
"Sorry, the file you attached is larger than 2mb. Please try again with a smaller file", |
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.
Not asking for a change at this time, but noting that we should really put FILE_SIZE_LIMIT (as MB) in the message here instead of hard-coding.
@20001LastOrder I tweaked test names and corresponding test data files. Please resolve merge conflicts and then we're good to go. |
@oshoma Resolve the merge conflicts. It seems you'll need to approve it again. |
@20001LastOrder confirming that this has not worked. just tested and didn't see the verbose behavior. re #248 |
change the
--verbose
flag to '--not-verbose` flag and make verbose logging as the default behavior.