I'm converting a cake script to a frosting project.
There are instructions for a script's verbosity. For frosting verbosity what I found was the --verbosity foo
switch.
I tried two things:
In the bootstrap script or the shell, I used
--verbosity=foo
I changed the verbosity of the dotnet commands:
context.DotNetClean(path, new DotNetCleanSettings { Verbosity = DotNetVerbosity.Foo });
So it seems like there are two verbosities - of cake frosting itself, and of the dotnet tool. I can't control that of frosting - for example, I can't see what command was issued.
Is that possible with frosting? (If not, I could just log each command manually before calling it, not a big deal.)