Yandex Cloud
Search
Discuss with expertTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Yandex Cloud Functions
  • Comparing with other Yandex Cloud services
    • Overview
    • Managing dependencies
    • Request handler
    • Invocation context
    • Logging
    • Error handling
    • Using the SDK
  • Tools
  • Pricing policy
  • Access management
  • Terraform reference
  • Monitoring metrics
  • Audit Trails events
  • Public materials
  • Release notes
  • FAQ
  1. Developing in Kotlin
  2. Logging

Kotlin function runtime logging

Written by
Yandex Cloud
Updated at May 14, 2026

Cloud Functions automatically captures an application's standard output streams and sends them to the centralized logging system in Yandex Cloud. Along with application runtime logging, the system logs request execution events.

Additional messages are logged using standard language constructs:

  1. println: Outputs a message to the standard output stream, stdout.
  2. System.err.println: Outputs a message to the standard error stream, stderr.

Note

Multiline messages must use \r (carriage return) as a separator, not \n (line feed). When using a line feed, each line is sent as a separate message and displayed separately in the log.

See alsoSee also

  • String formatting in the Kotlin documentation
  • Viewing function logs

Was the article helpful?

Previous
Invocation context
Next
Error handling
© 2026 Direct Cursus Technology L.L.C.