simonhq / accu_allergies

HA allergy sensors from AccuWeather
20 stars 2 forks source link

Lots of warnings as folder has changed #22

Closed Ricks88 closed 10 months ago

Ricks88 commented 10 months ago

Hello Simon,

I am having problems as the folder for appdaemon has changed outside the config.

I already changed the secret yaml link to /homeassistant/ instead of config.

But i get all of these warnings:

2023-11-28 00:13:25.213882 INFO AppDaemon: Loading App Module: /config/apps/accu_allergies/accu_allergies.py 2023-11-28 00:13:26.307214 INFO AppDaemon: Loading app hello_world using class HelloWorld from module hello 2023-11-28 00:13:26.310009 INFO AppDaemon: Loading app accu_allergies using class Get_Accu_Allergies from module accu_allergies 2023-11-28 00:13:26.313360 INFO AppDaemon: Calling initialize() for hello_world 2023-11-28 00:13:26.443399 INFO hello_world: Hello from AppDaemon 2023-11-28 00:13:26.445498 INFO hello_world: You are now ready to run Apps! 2023-11-28 00:13:26.447368 INFO AppDaemon: Calling initialize() for accu_allergies 2023-11-28 00:13:26.488643 INFO accu_allergies: request https://www.accuweather.com/NL/NL/posterholt/248858/health-activities/248858 2023-11-28 00:13:26.784442 WARNING accu_allergies: accu_allergies: Entity sensor.acc_data_last_sourced not found in namespace default 2023-11-28 00:13:26.785829 INFO AppDaemon: accu_allergies: Entity sensor.acc_data_last_sourced created in namespace: default 2023-11-28 00:13:26.819425 INFO accu_allergies: request https://www.accuweather.com/NL/NL/posterholt/248858/air-quality-index/248858 2023-11-28 00:13:27.200379 INFO accu_allergies: get 2023-11-28 00:13:27.349726 INFO accu_allergies: sensor.acc_boompollen_today 2023-11-28 00:13:27.351727 WARNING accu_allergies: accu_allergies: Entity sensor.acc_boompollen_today not found in namespace default ....... WARNING accu_allergies: accu_allergies: Entity sensor.acc_data_last_sourced not found in namespace default Can i fix them myself maybe?

simonhq commented 10 months ago

Hi Ricks,

These aren't actually errors, they are INFO log records explaining what it is doing. The warning messages about not finding things are just saying that they couldn't find it, so it will create it for you.

Everything looks as I would expect.

have a great day,

Simon

Ricks88 commented 10 months ago

Hi Ricks,

These aren't actually errors, they are INFO log records explaining what it is doing. The warning messages about not finding things are just saying that they couldn't find it, so it will create it for you.

Everything looks as I would expect.

have a great day,

Simon

Oh i did not know, never paid attention to that log before/can't remember. So it must be there already even before the migration of the addon folder.

Good to know all works fine :D

Thanks!