Skip to content

Commit

Permalink
Changed displaying of messages
Browse files Browse the repository at this point in the history
  • Loading branch information
louisld committed Dec 31, 2020
1 parent 2672e88 commit b9ba295
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void run() {
try {
rootFolder = googleAPI.getFolderIdByName("Fate Stay Night");
} catch (Exception e1) {
System.out.println(e1.toString());
Utils.print(e1.toString(), Utils.ERROR);
}

if(rootFolder != null) {
Expand All @@ -56,7 +56,7 @@ public void run() {
try {
routeFolders = googleAPI.getSubFiles(rootFolder, " and mimeType = 'application/vnd.google-apps.folder'");
} catch (IOException e1) {
System.out.println(e1.toString());
Utils.print(e1.toString(), Utils.ERROR);
}

//On récupère ensuite tous les Google Docs qui se trouve dans les sous-dossiers,
Expand All @@ -70,7 +70,7 @@ public void run() {
listGdocs.addAll(googleAPI.getSubFiles(dayFolder.getId(), " and mimeType = 'application/vnd.google-apps.document'"));
}
} catch (IOException e1) {
System.out.println(e1.toString());
Utils.print(e1.toString(), Utils.ERROR);
}
}

Expand Down Expand Up @@ -136,14 +136,14 @@ public void run() {
Utils.print("\tFichier " + filename +" écrit.");

} catch (IOException e1) {
System.out.println("Erreur lors de l'écriture.");
Utils.print("Erreur lors de l'écriture.", Utils.ERROR);
} catch (Exception e1) {
System.out.println("Fichier invalide.");
Utils.print("Fichier invalide.", Utils.ERROR);
}
}
Utils.print("Fini !");
} else {
System.out.println("Le répertoire de base n'a pas été trouvé.");
Utils.print("Le répertoire de base n'a pas été trouvé.", Utils.ERROR);
}
generateButton.setEnabled(true);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public Main() {
connectionButton.setEnabled(false);
connectionButton.setText("Connecté");
generateButton.setEnabled(true);
textOutput.append("Connecté à l'API Google Drive.\n");
Utils.print("Connecté à l'API Google Drive.\n");
} catch (GeneralSecurityException | IOException e1) {
System.out.println(e1.toString());
Utils.print(e1.toString(), Utils.ERROR);
}
});

Expand Down

0 comments on commit b9ba295

Please sign in to comment.