Skip to content

Commit

Permalink
removed System.out.print that was causing excessive logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dhilpipre committed Nov 13, 2024
1 parent 891e0b9 commit 0b7a161
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 8 deletions.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
org.gradle.jvmargs=-Xmx2048m
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy", name);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy", name);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy", name);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy-reactive", name);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
// System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy-reactive", name);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
// System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy-reactive", name);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
// System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy-reactive", name);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ public static void setTransactionName(RoutingContext request) {
if (method != null & method.length() > 0) {
name += " (" + method + ")";
}
// System.out.println(name);
NewRelic.getAgent().getTransaction().setTransactionName(TransactionNamePriority.FRAMEWORK_LOW, false, "Quarkus",
"resteasy-reactive", name);

Expand Down

0 comments on commit 0b7a161

Please sign in to comment.