aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/annotations
diff options
context:
space:
mode:
authorJack Koenig2020-03-23 11:22:23 -0700
committerGitHub2020-03-23 11:22:23 -0700
commit6b97e334e89d5f9d03c6abdd6ef927c3ca0b5030 (patch)
tree436054692a2d0a6828adadd5602b5d4134425979 /src/main/scala/firrtl/annotations
parent2d39db76b8b4da09aaba71ac18bf68952edd4dc9 (diff)
Change annotation logging (#1461)
* Change from log-level debug to trace * Serialize as JSON rather than .serialize on each annotation Co-Authored-By: Chick Markley <chick@qrhino.com>
Diffstat (limited to 'src/main/scala/firrtl/annotations')
-rw-r--r--src/main/scala/firrtl/annotations/Annotation.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/firrtl/annotations/Annotation.scala b/src/main/scala/firrtl/annotations/Annotation.scala
index adde816a..3cf6d5ef 100644
--- a/src/main/scala/firrtl/annotations/Annotation.scala
+++ b/src/main/scala/firrtl/annotations/Annotation.scala
@@ -14,9 +14,9 @@ trait Annotation extends Product {
/** Update the target based on how signals are renamed */
def update(renames: RenameMap): Seq[Annotation]
- /** Pretty Print
+ /** Optional pretty print
*
- * @note In [[logger.LogLevel.Debug]] this is called on every Annotation after every Transform
+ * @note rarely used
*/
def serialize: String = this.toString