Skip to content

Commit

Permalink
Dialing down log level
Browse files Browse the repository at this point in the history
  • Loading branch information
hohonuuli committed Jun 2, 2022
1 parent 63c57ec commit e1a08ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
public class CopyAnnotationsCmd implements Command {

private final Collection<Annotation> copiedAnnotations;
private final Collection<java.lang.annotation.Annotation> copiedAnnotations;

public CopyAnnotationsCmd(UUID videoReferenceUuid,
VideoIndex videoIndex,
Expand Down Expand Up @@ -130,6 +130,6 @@ private List<Annotation> filterPrexisting(UIToolBox toolBox, Collection<Annotati

@Override
public String getDescription() {
return null;
return "Copy " copiedAnnotations.size() + " annotations";
}
}
2 changes: 1 addition & 1 deletion org.mbari.vars.ui/src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<statusListener class="ch.qos.logback.core.status.NopStatusListener" />

<variable name="LOGBACK_LEVEL" value="${LOGBACK_LEVEL:-DEBUG}" />
<variable name="LOGBACK_LEVEL" value="${LOGBACK_LEVEL:-INFO}" />

<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender">
<withJansi>true</withJansi>
Expand Down

0 comments on commit e1a08ed

Please sign in to comment.