mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
Cloud Shell surface logging fix (#5364)
This commit is contained in:
@@ -235,7 +235,11 @@ export class ClearcutLogger {
|
|||||||
}
|
}
|
||||||
|
|
||||||
logStartSessionEvent(event: StartSessionEvent): void {
|
logStartSessionEvent(event: StartSessionEvent): void {
|
||||||
const surface = process.env.SURFACE || 'SURFACE_NOT_SET';
|
const surface =
|
||||||
|
process.env.CLOUD_SHELL === 'true'
|
||||||
|
? 'CLOUD_SHELL'
|
||||||
|
: process.env.SURFACE || 'SURFACE_NOT_SET';
|
||||||
|
|
||||||
const data = [
|
const data = [
|
||||||
{
|
{
|
||||||
gemini_cli_key: EventMetadataKey.GEMINI_CLI_START_SESSION_MODEL,
|
gemini_cli_key: EventMetadataKey.GEMINI_CLI_START_SESSION_MODEL,
|
||||||
|
|||||||
Reference in New Issue
Block a user