Skip to content

Commit

Permalink
Deprecate SpeedTracer logging
Browse files Browse the repository at this point in the history
  • Loading branch information
niloc132 committed Oct 7, 2024
1 parent 39218db commit 118b743
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* Represents a type of event whose performance is tracked while running the
* {@link com.google.gwt.dev.Compiler}
*/
@Deprecated
public enum CompilerEventType implements EventType {
CODE_SPLITTER("CodeSplitter", "Yellow"), //
COMPILE("Compiler", "DarkBlue"), //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* Represents a type of event whose performance is tracked while running
* {@link com.google.gwt.dev.DevMode}
*/
@Deprecated
public enum DevModeEventType implements EventType {
CLASS_BYTES_REWRITE("Class bytes rewrite", "DarkBlue"), //
CREATE_UI("Create UI", "BlueViolet"), //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* Represents a type of event whose performance is tracked while running
* {@link com.google.gwt.dev.DevMode}
*/
@Deprecated
public enum SpeedTracerEventType implements EventType {
GC("Garbage Collection", "Plum"),
OVERHEAD("Speedtracer Overhead","Black");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
* </p>
*
*/
@Deprecated
public final class SpeedTracerLogger {

private static final Logger log = Logger.getLogger(SpeedTracerLogger.class.getName());
Expand Down

0 comments on commit 118b743

Please sign in to comment.