Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(955)

Issue 26572010: Improve barback/pub logging. (Closed)

Created:
7 years, 2 months ago by Bob Nystrom
Modified:
7 years, 1 month ago
Reviewers:
nweiz, Alan Knight
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Improve barback/pub logging. Barback now lets you provide a logger, and pub gives it one that pipes through pub's logging infrastructure. I'll need this to get pub build using barback and easily testable with well-defined console output. BUG=https://code.google.com/p/dart/issues/detail?id=13880 R=alanknight@google.com Committed: https://code.google.com/p/dart/source/detail?r=28486

Patch Set 1 #

Patch Set 2 : Add missing file. #

Total comments: 41
Unified diffs Side-by-side diffs Delta from patch set Stats (+280 lines, -49 lines) Patch
M pkg/barback/lib/barback.dart View 1 chunk +1 line, -0 lines 0 comments Download
M pkg/barback/lib/src/asset_cascade.dart View 5 chunks +19 lines, -1 line 2 comments Download
M pkg/barback/lib/src/barback.dart View 1 chunk +2 lines, -2 lines 4 comments Download
A pkg/barback/lib/src/barback_logger.dart View 1 chunk +59 lines, -0 lines 12 comments Download
M pkg/barback/lib/src/build_result.dart View 2 chunks +15 lines, -4 lines 0 comments Download
M pkg/barback/lib/src/group_runner.dart View 3 chunks +7 lines, -0 lines 2 comments Download
M pkg/barback/lib/src/package_graph.dart View 4 chunks +16 lines, -3 lines 4 comments Download
M pkg/barback/lib/src/phase.dart View 4 chunks +8 lines, -0 lines 2 comments Download
M pkg/barback/lib/src/phase_input.dart View 4 chunks +8 lines, -0 lines 2 comments Download
M pkg/barback/lib/src/transform.dart View 4 chunks +9 lines, -7 lines 0 comments Download
M pkg/barback/lib/src/transform_logger.dart View 1 chunk +20 lines, -18 lines 2 comments Download
M pkg/barback/lib/src/transform_node.dart View 4 chunks +14 lines, -1 line 2 comments Download
M sdk/lib/_internal/pub/lib/src/barback.dart View 2 chunks +3 lines, -1 line 0 comments Download
M sdk/lib/_internal/pub/lib/src/barback/dart2js_transformer.dart View 2 chunks +14 lines, -1 line 0 comments Download
A sdk/lib/_internal/pub/lib/src/barback/pub_barback_logger.dart View 1 1 chunk +63 lines, -0 lines 7 comments Download
M sdk/lib/_internal/pub/lib/src/command/serve.dart View 3 chunks +5 lines, -8 lines 0 comments Download
M sdk/lib/_internal/pub/lib/src/dart.dart View 1 chunk +0 lines, -3 lines 2 comments Download
M sdk/lib/_internal/pub/lib/src/log.dart View 2 chunks +17 lines, -0 lines 0 comments Download

Messages

Total messages: 7 (0 generated)
Bob Nystrom
I'm getting pub build hooked up to barback, but that's rubbing against barback's primitive logging. ...
7 years, 2 months ago (2013-10-09 23:57:24 UTC) #1
Alan Knight
lgtm
7 years, 2 months ago (2013-10-10 22:34:34 UTC) #2
Bob Nystrom
Committed patchset #2 manually as r28486 (presubmit successful).
7 years, 2 months ago (2013-10-10 23:17:10 UTC) #3
nweiz
https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/asset_cascade.dart File pkg/barback/lib/src/asset_cascade.dart (right): https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/asset_cascade.dart#newcode88 pkg/barback/lib/src/asset_cascade.dart:88: /// A stream that emits an event whenever any ...
7 years, 2 months ago (2013-10-16 19:41:26 UTC) #4
Bob Nystrom
Thanks! Revised here: https://codereview.chromium.org/48993007 https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/asset_cascade.dart File pkg/barback/lib/src/asset_cascade.dart (right): https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/asset_cascade.dart#newcode88 pkg/barback/lib/src/asset_cascade.dart:88: /// A stream that emits ...
7 years, 1 month ago (2013-10-28 23:45:55 UTC) #5
nweiz
https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/barback.dart File pkg/barback/lib/src/barback.dart (right): https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/barback.dart#newcode67 pkg/barback/lib/src/barback.dart:67: Barback(PackageProvider provider, {BarbackLogger logger}) On 2013/10/28 23:45:56, Bob Nystrom ...
7 years, 1 month ago (2013-10-29 00:40:13 UTC) #6
Bob Nystrom
7 years, 1 month ago (2013-10-29 18:29:44 UTC) #7
Message was sent while issue was closed.
Revised over in other patch.

https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/barbac...
File pkg/barback/lib/src/barback.dart (right):

https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/barbac...
pkg/barback/lib/src/barback.dart:67: Barback(PackageProvider provider,
{BarbackLogger logger})
On 2013/10/29 00:40:13, nweiz wrote:
> On 2013/10/28 23:45:56, Bob Nystrom wrote:
> > On 2013/10/16 19:41:27, nweiz wrote:
> > > I'm not a big fan of using injection here. What do you think of providing
a
> > log
> > > stream (maybe replacing the [errors] stream), and having it log to stdout
if
> > > there are no listeners?
> > 
> > I thought about that (and it is using streams internally), but I'm not a fan
> of
> > there being different behavior based on whether or not a stream has
listeners.
> > I'm up for discussing this though, I could be convinced.
> 
> There's some precedent for this in that buffered streams will only top-level
> exceptions if they have a listener. I don't think triggering based on a
listener
> is something we want to do all the time, but I think this is a case where it
> makes sense, especially since the behavioral change when a listener added
isn't
> something that affects the actual code -- just what the end user sees.

Done.

https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/barbac...
File pkg/barback/lib/src/barback_logger.dart (right):

https://codereview.chromium.org/26572010/diff/4001/pkg/barback/lib/src/barbac...
pkg/barback/lib/src/barback_logger.dart:16: void logEntry(LogEntry entry) {
On 2013/10/29 00:40:13, nweiz wrote:
> On 2013/10/28 23:45:56, Bob Nystrom wrote:
> > On 2013/10/16 19:41:27, nweiz wrote:
> > > I'd rather just call this "log". "logEntry" reads as a noun to me, which
is
> > > weird for a method name.
> > 
> > In pub, we import log.dart with a "log" prefix, so implementing this class
in
> > pub is nasty if the method is called "log" too. :-/
> > 
> > My intent is for the method to read like "log entry" where "log" is the
verb.
> > It's not ideal.
> 
> Does it actually cause a conflict to define a method with the same name as a
> prefix that's in scope? That seems like it should be fine.

It doesn't conflict, it wins. So you have to do "this.log" to get to the method.

Removed this class, though, so done.

Powered by Google App Engine
This is Rietveld 408576698