001// Copyright (c) FIRST and other WPILib contributors. 002// Open Source Software; you can modify and/or share it under the terms of 003// the WPILib BSD license file in the root directory of this project. 004 005package edu.wpi.first.epilogue; 006 007import java.lang.annotation.ElementType; 008import java.lang.annotation.Retention; 009import java.lang.annotation.RetentionPolicy; 010import java.lang.annotation.Target; 011 012/** 013 * A field or method annotated as {@code @NotLogged} will be ignored by Epilogue when determining 014 * the data to log. 015 */ 016@Target({ElementType.FIELD, ElementType.METHOD}) 017@Retention(RetentionPolicy.RUNTIME) 018public @interface NotLogged {}