- Add full Telegram bot functionality with Z.AI API integration
- Implement 4 tools: Bash, FileEdit, WebSearch, Git
- Add 3 agents: Code Reviewer, Architect, DevOps Engineer
- Add 6 skills for common coding tasks
- Add systemd service file for 24/7 operation
- Add nginx configuration for HTTPS webhook
- Add comprehensive documentation
- Implement WebSocket server for real-time updates
- Add logging system with Winston
- Add environment validation
🤖 zCode CLI X - Agentic coder with Z.AI + Telegram integration
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
/*
|
|
* Copyright The OpenTelemetry Authors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
import { NOOP_LOGGER } from './NoopLogger';
|
|
export class ProxyLogger {
|
|
constructor(provider, name, version, options) {
|
|
this._provider = provider;
|
|
this.name = name;
|
|
this.version = version;
|
|
this.options = options;
|
|
}
|
|
/**
|
|
* Emit a log record. This method should only be used by log appenders.
|
|
*
|
|
* @param logRecord
|
|
*/
|
|
emit(logRecord) {
|
|
this._getLogger().emit(logRecord);
|
|
}
|
|
/**
|
|
* Try to get a logger from the proxy logger provider.
|
|
* If the proxy logger provider has no delegate, return a noop logger.
|
|
*/
|
|
_getLogger() {
|
|
if (this._delegate) {
|
|
return this._delegate;
|
|
}
|
|
const logger = this._provider._getDelegateLogger(this.name, this.version, this.options);
|
|
if (!logger) {
|
|
return NOOP_LOGGER;
|
|
}
|
|
this._delegate = logger;
|
|
return this._delegate;
|
|
}
|
|
}
|
|
//# sourceMappingURL=ProxyLogger.js.map
|