logging bugs
This commit is contained in:
parent
b74ae75fa8
commit
5858775483
|
|
@ -96,6 +96,12 @@ export class VideoChatShape extends BaseBoxShapeUtil<IVideoChatShape> {
|
||||||
try {
|
try {
|
||||||
// Ensure API key exists and is properly formatted
|
// Ensure API key exists and is properly formatted
|
||||||
const apiKey = import.meta.env.VITE_DAILY_API_KEY?.trim()
|
const apiKey = import.meta.env.VITE_DAILY_API_KEY?.trim()
|
||||||
|
console.log("API Key exists:", !!apiKey)
|
||||||
|
console.log(
|
||||||
|
"API Key format:",
|
||||||
|
apiKey?.substring(0, 4) === "key_" ? "correct" : "incorrect",
|
||||||
|
)
|
||||||
|
|
||||||
if (!apiKey) {
|
if (!apiKey) {
|
||||||
throw new Error("Daily API key is missing")
|
throw new Error("Daily API key is missing")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue