inline void log_type_error()

in spectator/registry.h [18:23]


inline void log_type_error(MeterType old_type, MeterType new_type,
                           const Id& id) {
  DefaultLogger()->warn(
      "Attempting to register {} as a {} but was previously registered as a {}",
      id, new_type, old_type);
}