question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Experimental error message feedback

See original GitHub issue

This is a tracking issue for feedback on the experimental error messages.

When using this option, the format and some content of error messages will be changed in order to improve readability. Pending feedback, this format will eventually become the default and replace current error messages.

To opt-in to the new format use -Adagger.experimentalDaggerErrorMessages=enabled after version 2.27.

Currently, this flag:

  • Shortens all class names to the simple class name. A legend is output at the bottom of the errors to map short names to fully qualified names.
  • Reports errors as a single error for each root component.
  • Adds color to error tags to visibly separate individual errors
  • Reduces some extraneous information from some messages.

Issue Analytics

  • State:open
  • Created 4 years ago
  • Comments:6 (1 by maintainers)

github_iconTop GitHub Comments

8reactions
JajaCompcommented, Mar 17, 2020

@tomislavhofman it depends on your build system. For Gradle I used this

 javaCompileOptions {
     annotationProcessorOptions {
          arguments = [
               "dagger.experimentalDaggerErrorMessages" : "enabled"
          ]
     }
 }

in android -> defaultConfig section

or

kapt {
        arguments {
            arg("dagger.experimentalDaggerErrorMessages", "enabled")
        }
    }

in android section

3reactions
dmaprcommented, Mar 17, 2020

@tomislavhofman it depends on your build system. For Gradle I used this

 javaCompileOptions {
     annotationProcessorOptions {
          arguments = [
               "dagger.experimentalDaggerErrorMessages" : "enabled"
          ]
     }
 }
Read more comments on GitHub >

github_iconTop Results From Across the Web

Experimental Error Types, Sources & Examples - Study.com
The definition of experimental error is any variance between a measurement taken during an experiment and the established value. Consider a ...
Read more >
Memory and truth: correcting errors with true feedback versus ...
In five experiments, we examined the conditions under which participants remembered true and false information given as feedback.
Read more >
(PDF) Correcting a Metacognitive Error: Feedback Increases ...
The function of feedback is to correct both memory errors and metacognitive errors. Proportion of correct responses on the final cued-recall ...
Read more >
Memory and truth: correcting errors with true feedback ... - NCBI
An exception occurred when false feedback followed an error: participants ... On the right are the results from Experiment 2, ...
Read more >
Making and monitoring errors based on altered auditory ...
Participants overestimated error frequency when AAF was present but not for normal feedback. Experiment 2 introduced a concurrent load task to ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found