def getPrintableProperty()

in src/main/scala/com.gu.conf/Configuration.scala [96:104]


  def getPrintableProperty(propertyName: String): Option[String] = {
    getStringProperty(propertyName) map { value =>
      propertyName match {
        case Password() => "*** PASSWORD ***"
        case Key() => "*** KEY ***"
        case _ => value
      }
    }
  }