Esphome logs not showing

Hello everyone!
I’m trying to program a simple temperature reporting with esp-01s, a Dallas sensor, and this time using esphome CLI instead of working form Home Assistant.

I’m starting from scratch so my idea was to flash an initial version of the firmware to display the available addresses from the Dallas sensor in order to use the one that interests me (I did the same months ago using only HA.

My board is an ESP8266 ESP-01S and I’m using an FTDI programmer to flash the firmware (I’m running on MacOS).

The wiring between ESP and FTDI is:

FTDI ESP
Vcc 3.3v
GND GND + IO0
RX TX
TX RX

The .yaml file is

esphome:
  name: living_temperature
  platform: ESP8266
  board: esp01_1m

  on_boot:
    priority: -100.0
    then:
      - logger.log: "Hello World"


  
# Enable logging
logger:
  level: VERBOSE

wifi:
  ssid: "my SSID"
  password: "my password"

And then I flash and run with
esphome run my file.yaml

Everything is successful but I’m not receiving any logs. I remember the logs I received on HA about connecting to wifi and all the information, I’m not seeing anything here, just this:

===================================== [SUCCESS] Took 44.25 seconds =====================================
INFO Successfully compiled program.
esptool.py v3.3.1
Serial port /dev/cu.usbserial-AQ0278W5
Connecting....
Chip is ESP8266EX
Features: WiFi
Crystal is 26MHz
MAC: 24:4c:ab:40:62:a2
Uploading stub...
Running stub...
Stub running...
Changing baud rate to 460800
Changed.
Configuring flash size...
Auto-detected Flash size: 1MB
Flash will be erased from 0x00000000 to 0x00052fff...
Compressed 339632 bytes to 242543...
Wrote 339632 bytes (242543 compressed) at 0x00000000 in 5.7 seconds (effective 475.9 kbit/s)...
Hash of data verified.

Leaving...
Hard resetting via RTS pin...
INFO Successfully uploaded program.
INFO Starting log output from /dev/cu.usbserial-AQ0278W5 with baud rate 115200

I’m pretty sure I’m missing something stupid, suggestions?

Thanks everyone!!

I forgot to disconnect the IO0 pin :’)

I’m wondering what do you mean? I have exactly the same log and no output from my device and no connected pins on the board at all…
Maybe someone has some ideas?