To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorConfigure Log level of aruba logger
As a developer
I want to configure the level of information put to output by logger
In order to modify the amount of information
- Background
-
- Given
- I use the fixture "cli-app"
- Scenarios
-
- Default value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| puts %(The default value is "#{config.log_level}") end
- When
-
I successfully run
cucumber
- Then
-
the output should contain:
The default value is "info"
- Modify value
-
- Given
-
a file named "features/support/aruba.rb" with:
Aruba.configure do |config| config.log_level = :warn end Aruba.configure do |config| puts %(The default value is "#{config.log_level}") end
- Then
-
I successfully run
cucumber
- Then
-
the output should contain:
The default value is "warn"
Last published over 7 years ago by Max Meyer.