Skip to content

Commit 44cd69b

Browse files
dgottliebgithub-actions[bot]
andauthoredNov 27, 2023
RSDK-5277: Add log configuration to robot proto. (#401)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b9a833e commit 44cd69b

File tree

11 files changed

+852
-542
lines changed

11 files changed

+852
-542
lines changed
 

‎app/v1/robot.pb.go

+584-508
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎component/arm/v1/arm.pb.gw.go

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎component/encoder/v1/encoder.pb.gw.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎component/gripper/v1/gripper.pb.gw.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎component/inputcontroller/v1/input_controller.pb.gw.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎component/powersensor/v1/powersensor.pb.gw.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎gen/js/app/v1/robot_pb.d.ts

+26
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,11 @@ export class ComponentConfig extends jspb.Message {
224224
getApi(): string;
225225
setApi(value: string): void;
226226

227+
hasLogConfiguration(): boolean;
228+
clearLogConfiguration(): void;
229+
getLogConfiguration(): LogConfiguration | undefined;
230+
setLogConfiguration(value?: LogConfiguration): void;
231+
227232
serializeBinary(): Uint8Array;
228233
toObject(includeInstance?: boolean): ComponentConfig.AsObject;
229234
static toObject(includeInstance: boolean, msg: ComponentConfig): ComponentConfig.AsObject;
@@ -245,6 +250,7 @@ export namespace ComponentConfig {
245250
serviceConfigsList: Array<ResourceLevelServiceConfig.AsObject>,
246251
attributes?: google_protobuf_struct_pb.Struct.AsObject,
247252
api: string,
253+
logConfiguration?: LogConfiguration.AsObject,
248254
}
249255
}
250256

@@ -585,6 +591,26 @@ export namespace Frame {
585591
}
586592
}
587593

594+
export class LogConfiguration extends jspb.Message {
595+
getLevel(): string;
596+
setLevel(value: string): void;
597+
598+
serializeBinary(): Uint8Array;
599+
toObject(includeInstance?: boolean): LogConfiguration.AsObject;
600+
static toObject(includeInstance: boolean, msg: LogConfiguration): LogConfiguration.AsObject;
601+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
602+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
603+
static serializeBinaryToWriter(message: LogConfiguration, writer: jspb.BinaryWriter): void;
604+
static deserializeBinary(bytes: Uint8Array): LogConfiguration;
605+
static deserializeBinaryFromReader(message: LogConfiguration, reader: jspb.BinaryReader): LogConfiguration;
606+
}
607+
608+
export namespace LogConfiguration {
609+
export type AsObject = {
610+
level: string,
611+
}
612+
}
613+
588614
export class Translation extends jspb.Message {
589615
getX(): number;
590616
setX(value: number): void;

0 commit comments

Comments
 (0)
Please sign in to comment.