Summary: Closes https://github.com/facebook/yoga/pull/543 Reviewed By: emilsjolander Differential Revision: D4997389 Pulled By: splhack fbshipit-source-id: b4b3aa4cba29063df93fd2a57f96031a8fa393de
32 lines
972 B
C++
32 lines
972 B
C++
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#include "YGInterop.h"
|
|
|
|
static YGInteropLogger gManagedLogger;
|
|
|
|
static int unmanagedLogger(const YGConfigRef config,
|
|
const YGNodeRef node,
|
|
YGLogLevel level,
|
|
const char *format,
|
|
va_list args) {
|
|
int result = 0;
|
|
if (gManagedLogger) {
|
|
char message[8192];
|
|
result = vsnprintf(message, sizeof(message), format, args);
|
|
(*gManagedLogger)(config, node, level, message);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void YGInteropSetLogger(YGInteropLogger managedLogger) {
|
|
gManagedLogger = managedLogger;
|
|
YGConfigSetLogger(YGConfigGetDefault(), &unmanagedLogger);
|
|
}
|