We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9f37d commit 9066afdCopy full SHA for 9066afd
pkg/llm-d-inference-sim/simulator.go
@@ -720,11 +720,10 @@ func (s *VllmSimulator) showConfig(tgtLgr logr.Logger) error {
720
err := fmt.Errorf("target logger is nil, cannot show configuration")
721
return err
722
}
723
- config := s.config
724
- cfgJSON, err := json.MarshalIndent(config, "", " ")
+ cfgJSON, err := json.MarshalIndent(s.config, "", " ")
725
if err != nil {
726
return fmt.Errorf("failed to marshal configuration to JSON: %w", err)
727
728
- tgtLgr.Info("Final simulator configuration:", "config", string(cfgJSON))
+ tgtLgr.Info("Configuration:", "", string(cfgJSON))
729
return nil
730
0 commit comments