public getLogGroupName()

in src/environment/DefaultEnvironment.ts [45:53]


  public getLogGroupName(): string {
    // if the caller explicitly overrides logGroupName to
    // be empty, we should honor that rather than providing
    // the default behavior.
    if (config.logGroupName === '') {
      return '';
    }
    return config.logGroupName ? config.logGroupName : `${this.getName()}-metrics`;
  }