blob: 31ec7a1a176268cc56ad09acb58f66aec7557e98 [file] [log] [blame] [edit]
/*
* Copyright 2026 The Android Open Source Project
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "include/private/base/SkLog.h"
#include <cstdarg>
#if !defined(SkLog)
void SkLog(SkLogPriority priority, const char format[], ...) {
va_list args;
va_start(args, format);
SkLogVAList(priority, format, args);
va_end(args);
}
#endif