A Scala compiler plugin that replaces the default toString
implementation of case classes with a more verbose one.
Without the plugin:
final case class User(name: String, age: Int)
User("Joe", 18).toString() // "User(Joe, 18)"
With the plugin:
User("Joe", 18).toString() // "User(name = Joe, age = 18)"
In sbt:
libraryDependencies += compilerPlugin("org.polyvariant" % "better-tostring" % version cross CrossVersion.full)
In scala-cli:
//> using plugin "org.polyvariant:::better-tostring:version"
(note: versions before 0.3.8
were published under the com.kubukoz
organization instead of org.polyvariant
)
The plugin is currently published for the following 25 Scala versions:
- 2.12.18, 2.12.19, 2.12.20
- 2.13.12, 2.13.13, 2.13.14, 2.13.15
- 3.1.3
- 3.2.2
- 3.3.0-RC6, 3.3.0, 3.3.1-RC1, 3.3.1, 3.3.2-RC1, 3.3.3, 3.3.4
- 3.4.0-RC1, 3.4.0, 3.4.1-RC1, 3.4.1, 3.4.2
- 3.5.0-RC1, 3.5.0, 3.5.1, 3.5.2
For older Scala versions, see previous versions of better-tostring (or even older versions).
As a rule of thumb, active support will include at least 3 latest stable versions of 2.12, 2.13 and 3.0 for the foreseeable future.
- Only case classes located directly in
package
s orobject
s are changed. Nested classes and classes local to functions are currently ignored. - Only the fields in the first parameter list are shown.
- If the class is nested in an object (but not a package object), the object's name and a dot are prepended.
- If the class already overrides
toString
directly, it's not replaced.
- Ignore classes that inherit
toString
from a type that isn'tObject
(#34) - Potentially ignore value classes (#19)
If you have ideas for improving the plugin, feel free to create an issue and we'll consider making it happen :)
tl;dr there is none.
The plugin makes certain assumptions about what is a better toString
. We aim for a useful and reasonably verbose description of the data type,
which could make it easier to find certain issues with your tests (mismatching values in a field) or see the labels in debug logs.
We also want the plugin to become minimal in the implementation and easy to use (plug & play), without lots of configuration options, so the representation of the data types will not be customizable. The format may change over time without prior notice, so you shouldn't rely on the exact representation (as is the case with any toString
methods), but any changes in behavior will be communicated in the release notes.
If you need a different toString
, we suggest that you implement one yourself. You may also want to look at pprint.
See CONTRIBUTING.md
The maintainers of this project (people who can merge PRs and make releases) are:
- Jakub Kozłowski (@kubukoz)
- Michał Pawlik (@majk-p)
- Mikołaj Robakowski (@mrobakowski)
This project supports the Scala code of conduct and wants communication on all its channels (GitHub etc.) to be inclusive environments.
If you have any concerns about someone's behavior on these channels, contact Jakub Kozłowski.