error_handling.cpp 212 Bytes
Newer Older
1
#include "pls/internal/base/error_handling.h"
2 3
#include <thread>
#include <chrono>
4 5

void pls_error(const char *msg) {
6 7
  using namespace std::chrono_literals;
  std::this_thread::sleep_for(5s);
8 9
  PLS_ERROR(msg);
}