Skip to content

Commit

Permalink
reduce log
Browse files Browse the repository at this point in the history
  • Loading branch information
disk91 committed Jun 7, 2023
1 parent b8f1cca commit 613158a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion nuxt/console/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default {
proxyDeact:(process.env.API_HOST || '')+'/console/1.0/proxy/deactivate',
ouiGet:(process.env.API_HOST || '')+'/console/1.0/misc/oui',
termAndUse:process.env.CONSOLE_TERMS || '/',
frontVersion:'1.0.3'
frontVersion:'1.1.0'
},

// env variables loaded accessible on the server side
Expand Down
2 changes: 1 addition & 1 deletion nuxt/console/services/chirpstack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ export class ChirpstackService {
let body : IntegrationHttpCreate = {
integration : {
encoding : "JSON",
eventEndpointUrl : "http://helium-forwarder-1:8082/capture/",
eventEndpointUrl : "http://fwdlb:8082/capture/",
headers : {
"hid" : this.integration.id,
"hendpoint" : this.integration.endpoint,
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/eu/heliumiot/console/service/NovaService.java
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public synchronized void refreshOneEuiSkf(String routeId, String eui) {
// find the previous one and remove it
skf_v1 old = r.skfsByEui.get(eui);
if ( old != null) {
log.debug("Key "+old.getSessionKey()+" found for deletion");
log.info("Key "+old.getSessionKey()+" found for deletion");
SkfUpdate su = new SkfUpdate();
su.devAddr = old.getDevaddr();
su.session = old.getSessionKey();
Expand All @@ -244,7 +244,7 @@ public synchronized void refreshOneEuiSkf(String routeId, String eui) {
su.devAddr = iDevAddr;
su.session = ntwSEncKey;
skfToAdd.add(su);
log.debug("Key "+ntwSEncKey+" to be added");
log.info("Key "+ntwSEncKey+" to be added");
grpcUpdateSessions(skfToAdd,skfToRem,routeId);

skf_v1 n = skf_v1.newBuilder()
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ spring.main.register-shutdown-hook=true
# spring.jpa.properties.hibernate.format_sql=true
helium.allows.signup.default=false
helium.allows.activation.default=true
helium.version=1.0.3
helium.version=1.1.0

## Stripe - test key by default
helium.stripe.key.private.default=sk_test_VePHdqKTYQjKNInc7u56JBrQ
Expand Down Expand Up @@ -95,7 +95,7 @@ chirpstack.api.admin.token.default=
#logging.level.eu.heliumiot.console.service.HeliumTenantStatService=DEBUG
#logging.level.eu.heliumiot.console.service.HeliumDeviceService=DEBUG
#logging.level.eu.heliumiot.console.api.TenantApi=DEBUG
logging.level.eu.heliumiot.console.service.NovaService=DEBUG
#logging.level.eu.heliumiot.console.service.NovaService=DEBUG
#logging.level.eu.heliumiot.console.mqtt.MqttListener=DEBUG
#logging.level.fr.ingeniousthings.tools.ObjectCache=DEBUG
#logging.level.eu.heliumiot.console.redis.RedisDeviceStreamListener=DEBUG
Expand Down

0 comments on commit 613158a

Please sign in to comment.