aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Kehrer <felix.kehrer@gmail.com>2018-06-15 14:47:18 +0200
committerTharre <tharre3@gmail.com>2018-06-16 17:39:48 +0200
commit250c2153cdc1a329f577294618ffd3e52352cd38 (patch)
tree3c361476e2e6f3ec226b91dd0fa6a030e4959f43
parent3a82ac0d42d57c57a27f65f518f51b72ce008dc3 (diff)
downloadsepm-groupproject-250c2153cdc1a329f577294618ffd3e52352cd38.tar.gz
sepm-groupproject-250c2153cdc1a329f577294618ffd3e52352cd38.tar.xz
sepm-groupproject-250c2153cdc1a329f577294618ffd3e52352cd38.zip
Added logging to onMouseClicked methods #27033
-rw-r--r--src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/controller/RegistrationWindowController.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/controller/RegistrationWindowController.java b/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/controller/RegistrationWindowController.java
index 8b1e069..e6c35a1 100644
--- a/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/controller/RegistrationWindowController.java
+++ b/src/main/java/at/ac/tuwien/sepm/assignment/groupphase/einsatzverwaltung/controller/RegistrationWindowController.java
@@ -209,7 +209,7 @@ public class RegistrationWindowController {
}
public void cancel() {
- LOG.debug("Cancel Button clicked");
+ LOG.debug("Hyperlink \"schließen\" clicked");
reset();
this.setVisible(false);
createOperationController.setVisible(true);
@@ -227,7 +227,7 @@ public class RegistrationWindowController {
}
public void create() {
- LOG.debug("Create Button clicked");
+ LOG.debug("Button \"ERSTELLEN\" clicked");
Set<Registration> registrations = new HashSet<>();
try {