You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
400 B

  1. -define(wsErr(Str), error_logger:error_msg(Str)).
  2. -define(wsErr(Format, Args), error_logger:error_msg(Format, Args)).
  3. -define(wsWarn(Format, Args), error_logger:warning_msg(Format, Args)).
  4. -define(wsInfo(Format, Args), error_logger:info_msg(Format, Args)).
  5. -define(wsGLV(Key, List, Default), wsUtil:gLV(Key, List, Default)).
  6. -define(IIF(Cond, Then, That), case Cond of true -> Then; _ -> That end).