Alexa: The requested skill took too long to respond

Hi,

I can’t get the alexa Custom Skill to work. Alexa always say “The requested skill took too long to respond”.
Haaska and flashbriefing works perfectly. Can someone help me?

{
  "intents": [
    {
      "intent": "AMAZON.CancelIntent"
    },
    {
      "intent": "AMAZON.HelpIntent"
    },
    {
      "intent": "AMAZON.StopIntent"
    },
    {
      "slots": [
        {
          "name": "User",
          "type": "AMAZON.US_FIRST_NAME"
        }
      ],
      "intent": "LocateIntent"
    }
  ]
}

alexa:

intents:
  LocateIntent:
    speech:
      type: plaintext
      text: >
        {%- for state in states.device_tracker -%}
          {%- if state.name.lower() == User.lower() -%}
            {{ state.name }} ist {{ state.state }}
          {%- endif -%}
        {%- else -%}
          Entschuldigung, aber ich weis nicht wo {{ User }} ist.
        {%- endfor -%}

You’re using an older format for alexa configuration. This changed a few updates ago.
The Alexa section changes to intent_script: and the speech type changed from “Plaintext” to “Plain”

Thanks;
Changed it and I’ve reduced the whole thing to a minimum now… Unfortunately, I still have the same problem.

intent_script:
  StatusIntent:
    speech:
      type: plain
      text: Dies ist ein Test

.

{
  "intents": [
    {
      "intent": "StatusIntent"
    }
  ]
}

I don’t see any query in the log either. how can I activate the logger explicitly for alexa component?