Use default verbosity level for CI command

This commit is contained in:
Ivan Kravets
2015-05-19 14:37:47 +03:00
parent a1cc5f4282
commit 77838f2938
3 changed files with 2 additions and 4 deletions

View File

@ -112,8 +112,6 @@ Buid project using pre-configured :ref:`projectconf`.
Shows details about the results of processing environments. More details
:option:`platformio run --verbose`
By default, verbosity level is set to 1 (only errors will be printed).
Examples
--------

View File

@ -1,7 +1,7 @@
# Copyright (C) Ivan Kravets <me@ikravets.com>
# See LICENSE for details.
VERSION = (2, 0, "0a1")
VERSION = (2, 0, "0a2")
__version__ = ".".join([str(s) for s in VERSION])
__title__ = "platformio"

View File

@ -53,7 +53,7 @@ def validate_boards(ctx, param, value): # pylint: disable=W0613
@click.option("--project-conf",
type=click.Path(exists=True, file_okay=True, dir_okay=False,
readable=True, resolve_path=True))
@click.option("--verbose", "-v", count=True, default=1)
@click.option("--verbose", "-v", count=True, default=3)
@click.pass_context
def cli(ctx, src, lib, exclude, board, # pylint: disable=R0913
build_dir, keep_build_dir, project_conf, verbose):