Files
android/proprietary/wvm/WVMLogging.cpp
Jeff Tinker c3949b1967 Changed license headers from AOSP to Google copyright
Change-Id: I3587e290cf49755e06354118fbf877d189508ce8
related-to-bug: 5833045
2012-01-24 15:27:50 -08:00

15 lines
262 B
C++

/*
* Copyright (C) 2011 Google, Inc. All Rights Reserved
*/
#define LOG_TAG "WVMLogging"
#include <utils/Log.h>
#include "WVMLogging.h"
// Connect Widevine debug logging into Android logging
void android_printbuf(const char *buf)
{
ALOGD("%s", buf);
}