Skip to content

Commit

Permalink
Cleaning up logging
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonHHouse committed Oct 9, 2020
1 parent 0b33926 commit bf40040
Show file tree
Hide file tree
Showing 13 changed files with 119 additions and 4,904 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public DiscordNotificationAgent(@NotNull IO ioService) {
return false;
}

LOGGER.info("discordMessage {}", discordMessage);
LOGGER.info("Sending discordMessage");
RequestBody body = RequestBody.create(discordMessage, MediaType.get(org.springframework.http.MediaType.APPLICATION_JSON_VALUE));

Request request = new Request.Builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public GotifyNotificationAgent(@NotNull IO ioService) {
return false;
}

LOGGER.info("Gotify {}", gotifyMessage);
LOGGER.info("Sending gotifyMessage");
RequestBody body = RequestBody.create(gotifyMessage, MediaType.get(org.springframework.http.MediaType.APPLICATION_JSON_VALUE));

Request request = new Request.Builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public PushBulletNotificationAgent(@NotNull IO ioService) {
return false;
}

LOGGER.info("pushBulletMessage {}", pushBulletMessage);
LOGGER.info("Sending pushBulletMessage");
RequestBody body = RequestBody.create(pushBulletMessage, MediaType.get(org.springframework.http.MediaType.APPLICATION_JSON_VALUE));

Request request = new Request.Builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public PushOverNotificationAgent(@NotNull IO ioService) {
return false;
}

LOGGER.info("pushOverMessage {}", pushOverMessage);
LOGGER.info("Sending pushOverMessage");
RequestBody body = RequestBody.create(pushOverMessage, MediaType.get(org.springframework.http.MediaType.APPLICATION_JSON_VALUE));

Request request = new Request.Builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public SlackNotificationAgent(@NotNull IO ioService) {
return false;
}

LOGGER.info("slackMessage {}", slackMessage);
LOGGER.info("Sending slackMessage");
RequestBody body = RequestBody.create(slackMessage, MediaType.get(org.springframework.http.MediaType.APPLICATION_JSON_VALUE));

Request request = new Request.Builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public TelegramNotificationAgent(@NotNull IO ioService) {
return false;
}

LOGGER.info("telegramMessage {}", telegramMessage);
LOGGER.info("Sending telegramMessage");
RequestBody body = RequestBody.create(telegramMessage, MediaType.get(org.springframework.http.MediaType.APPLICATION_JSON_VALUE));

Request request = new Request.Builder()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public void writeProperties(@NotNull PlexProperties plexProperties) {
@Override
@NotNull
public PlexProperties readProperties() {
LOGGER.info("readProperties()");
LOGGER.debug("readProperties()");

final File file = Paths.get(gapsConfiguration.getStorageFolder(), gapsConfiguration.getProperties().getGapsProperties()).toFile();
if (!file.exists()) {
Expand Down
3 changes: 0 additions & 3 deletions cypress/plugins/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,4 @@
module.exports = (on, config) => {
// `on` is used to hook into various events Cypress emits
// `config` is the resolved Cypress config
require('@cypress/code-coverage/task')(on, config);

return config;
}
3 changes: 1 addition & 2 deletions cypress/support/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@
import './commands'

// Alternatively you can use CommonJS syntax:
// require('./commands')
import '@cypress/code-coverage/support'
// require('./commands')
275 changes: 0 additions & 275 deletions jmeter/About HTTP Request.jmx

This file was deleted.

2 changes: 0 additions & 2 deletions jmeter/configuration.csv

This file was deleted.

Loading

0 comments on commit bf40040

Please sign in to comment.